POST api/Lock
Request Information
URI Parameters
None.
Body Parameters
LockData| 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": "fea8a777-58cc-427f-88c9-14d659995b54",
"OuterSystemId": "53a7a1a7-e64d-43bd-8a7b-673c5a0a5bf8",
"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:
<LockData 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>fea8a777-58cc-427f-88c9-14d659995b54</AccountId> <Amount>4</Amount> <OuterOrderId>sample string 3</OuterOrderId> <OuterSystemId>53a7a1a7-e64d-43bd-8a7b-673c5a0a5bf8</OuterSystemId> <Remark>sample string 5</Remark> </LockData>
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>