POST DepositSlips
Request Information
URI Parameters
None.
Body Parameters
CreateSlipsName | Description | Type | Additional information |
---|---|---|---|
UserInfo | UserData |
None. |
|
town | integer |
None. |
|
acode | string |
None. |
|
dscr | string |
None. |
|
image | string |
None. |
|
amount | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{ "UserInfo": { "UserId": "sample string 1", "Token": "sample string 2", "App_Key": "sample string 3" }, "town": 1, "acode": "sample string 2", "dscr": "sample string 3", "image": "sample string 4", "amount": 5.0 }
application/xml, text/xml
Sample:
<CreateSlips xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices.Controllers"> <UserInfo> <App_Key>sample string 3</App_Key> <Token>sample string 2</Token> <UserId>sample string 1</UserId> </UserInfo> <acode>sample string 2</acode> <amount>5</amount> <dscr>sample string 3</dscr> <image>sample string 4</image> <town>1</town> </CreateSlips>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResultName | Description | Type | Additional information |
---|---|---|---|
Status | integer |
None. |
|
Message | string |
None. |
|
Response | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "Status": 1, "Message": "sample string 2", "Response": "sample string 3" }
application/xml, text/xml
Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MobileServices"> <Message>sample string 2</Message> <Response>sample string 3</Response> <Status>1</Status> </Result>