POST api/v1/oauthtransferv1/TransferIn
Request Information
URI Parameters
None.
Body Parameters
TransferInParamDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Amount | decimal number |
None. |
|
| CountryCode | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Amount": 1.0,
"CountryCode": "sample string 2"
}
application/xml, text/xml
Sample:
<TransferInParamDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Others.Odd"> <Amount>1</Amount> <CountryCode>sample string 2</CountryCode> </TransferInParamDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
SMHRetRechargeDto| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| PayType | string |
None. |
|
| Service | string |
None. |
|
| IsSdkPay | boolean |
None. |
|
| Data | Object |
None. |
Response Formats
application/json
Sample:
Sample not available.
application/xml
Sample:
<SMHRetRechargeDto xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ID>1</ID> <Status>2</Status> <Message>sample string 3</Message> <PayType>sample string 4</PayType> <Service>sample string 5</Service> <IsSdkPay>true</IsSdkPay> <Data /> </SMHRetRechargeDto>
text/json
Sample:
{
"ID": 1,
"Status": 2,
"Message": "sample string 3",
"PayType": "sample string 4",
"Service": "sample string 5",
"IsSdkPay": true,
"Data": {}
}
text/xml
Sample:
<SMHRetRechargeDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Smart.Domain.Dto.Activity.SMH"> <Data /> <ID>1</ID> <IsSdkPay>true</IsSdkPay> <Message>sample string 3</Message> <PayType>sample string 4</PayType> <Service>sample string 5</Service> <Status>2</Status> </SMHRetRechargeDto>