POST api/Expend
Request Information
URI Parameters
None.
Body Parameters
ExpendData| Name | Description | Type | Additional information |
|---|---|---|---|
| AccountId | globally unique identifier |
None. |
|
| OuterSystemId | globally unique identifier |
None. |
|
| OuterOrderId | string |
None. |
|
| Amount | unsigned integer |
None. |
|
| Remark | string |
None. |
|
| Id | string |
None. |
|
| Callback | string |
None. |
|
| State | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"AccountId": "d1c1d669-2c64-435b-b538-4f2bdb73e300",
"OuterSystemId": "a7aa3a17-3ce6-41ee-91af-6b393555a59b",
"OuterOrderId": "sample string 3",
"Amount": 4,
"Remark": "sample string 5",
"Id": "sample string 6",
"Callback": "sample string 7",
"State": "sample string 8"
}
application/xml, text/xml
Sample:
<ExpendData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Desn.FastTransaction.Communication.Data"> <Callback>sample string 7</Callback> <Id>sample string 6</Id> <State>sample string 8</State> <AccountId>d1c1d669-2c64-435b-b538-4f2bdb73e300</AccountId> <Amount>4</Amount> <OuterOrderId>sample string 3</OuterOrderId> <OuterSystemId>a7aa3a17-3ce6-41ee-91af-6b393555a59b</OuterSystemId> <Remark>sample string 5</Remark> </ExpendData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>