POST TopUp/Provider
Request Information
URI Parameters
None.
Body Parameters
TopUpProviderListRequestName | Description | Type | Additional information |
---|---|---|---|
productType | string |
None. |
|
userID |
user API |
string |
None. |
accessToken |
access code getting from login |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "productType": "sample string 1", "userID": "sample string 2", "accessToken": "sample string 3" }
application/xml, text/xml
Sample:
<TopUpProviderListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models"> <accessToken>sample string 3</accessToken> <userID>sample string 2</userID> <productType>sample string 1</productType> </TopUpProviderListRequest>
Response Information
Resource Description
TopUpProviderListResponseName | Description | Type | Additional information |
---|---|---|---|
productType | string |
None. |
|
providers | Collection of string |
None. |
|
respTime |
describe time in sending response |
date |
None. |
userID |
user ID to access API |
string |
None. |
accessToken |
access token that needed to access API |
string |
None. |
status |
SUCCESS or FAILED |
string |
None. |
respMessage |
detail message of response status |
string |
None. |
Response Formats
application/json, text/json
Sample:
{ "productType": "sample string 1", "providers": [ "sample string 1", "sample string 2" ], "respTime": "2025-01-23T00:09:21.5634765+07:00", "userID": "sample string 3", "accessToken": "sample string 4", "status": "sample string 5", "respMessage": "sample string 6" }
application/xml, text/xml
Sample:
<TopUpProviderListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Cebes.DI.H2H.Api.Models"> <accessToken>sample string 4</accessToken> <respMessage>sample string 6</respMessage> <respTime>2025-01-23T00:09:21.5634765+07:00</respTime> <status>sample string 5</status> <userID>sample string 3</userID> <productType>sample string 1</productType> <providers xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </providers> </TopUpProviderListResponse>