POST api/Payment/AddFundsOrder
Request Information
URI Parameters
None.
Body Parameters
PaymentUtilization| Name | Description | Type | Additional information |
|---|---|---|---|
| apiKey | string |
None. |
|
| subclientcode | integer |
None. |
|
| ordercode | string |
None. |
|
| orderID | string |
None. |
|
| parentOrderCode | string |
None. |
|
| amount | decimal number |
None. |
|
| orderDate | date |
None. |
|
| agentcode | integer |
None. |
|
| omProductTypeCode | integer |
None. |
|
| productCode | integer |
None. |
|
| serviceName | string |
None. |
|
| omChildCode | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"apiKey": "sample string 1",
"subclientcode": 1,
"ordercode": "sample string 2",
"orderID": "sample string 3",
"parentOrderCode": "sample string 4",
"amount": 1.1,
"orderDate": "2026-05-01T16:48:46.3147741+00:00",
"agentcode": 1,
"omProductTypeCode": 1,
"productCode": 1,
"serviceName": "sample string 6",
"omChildCode": 1
}
application/xml, text/xml
Sample:
<PaymentUtilization xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaymentEncryptionDecryption.Controllers"> <agentcode>1</agentcode> <amount>1.1</amount> <apiKey>sample string 1</apiKey> <omChildCode>1</omChildCode> <omProductTypeCode>1</omProductTypeCode> <orderDate>2026-05-01T16:48:46.3147741+00:00</orderDate> <orderID>sample string 3</orderID> <ordercode>sample string 2</ordercode> <parentOrderCode>sample string 4</parentOrderCode> <productCode>1</productCode> <serviceName>sample string 6</serviceName> <subclientcode>1</subclientcode> </PaymentUtilization>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseObjectOfInt32| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| chargingStatus | integer |
None. |
|
| data | integer |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"chargingStatus": 2,
"data": 3,
"message": "sample string 4"
}
application/xml, text/xml
Sample:
<ResponseObjectOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PaymentEncryptionDecryption.Controllers"> <chargingStatus>2</chargingStatus> <data>3</data> <isSuccess>true</isSuccess> <message>sample string 4</message> </ResponseObjectOfint>