POST Client/CheckClientDepositLimitPerDay
Check Client Deposit Limit Per Day
Request Information
URI Parameters
None.
Body Parameters
ApiCheckClientDepostRequestFilter| Name | Description | Type | Additional information |
|---|---|---|---|
| clientID |
Gets or sets the client identifier. |
integer |
None. |
| ClientTransactionTypeID |
Gets or sets the client ClientTransactionTypeID. |
integer |
None. |
| DepositAmount |
Gets or sets the client LimitAmount. |
decimal number |
None. |
| userID |
Gets or sets the user identifier. |
integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"clientID": 1,
"ClientTransactionTypeID": 2,
"DepositAmount": 3.0,
"userID": 4
}
application/xml, text/xml
Sample:
<ApiCheckClientDepostRequestFilter xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models"> <userID>4</userID> <ClientTransactionTypeID>2</ClientTransactionTypeID> <DepositAmount>3</DepositAmount> <clientID>1</clientID> </ApiCheckClientDepostRequestFilter>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ApiCheckClientDepositLimitPerDayResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| ResponseObject |
Gets or sets the response object. |
ApiCheckClientDepositLimitPerDay |
None. |
| ResponseType |
Gets or sets the type of the response. |
integer |
None. |
| ResponseMessage |
Gets or sets the response message. |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ResponseObject": {
"Success": true,
"SuccessMessage": "sample string 1"
},
"ResponseType": 1,
"ResponseMessage": "sample string 2"
}
application/xml, text/xml
Sample:
<ApiCheckClientDepositLimitPerDayResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SyX.Online.API.Models">
<ResponseMessage>sample string 2</ResponseMessage>
<ResponseType>1</ResponseType>
<ResponseObject>
<Success>true</Success>
<SuccessMessage>sample string 1</SuccessMessage>
</ResponseObject>
</ApiCheckClientDepositLimitPerDayResponse>