POST CheckTradingAccount
Request Information
URI Parameters
None.
Body Parameters
CheckTradingAccountRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| tradingAccountId | string |
None. |
|
| currency | string |
None. |
|
| signature | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"tradingAccountId": "sample string 1",
"currency": "sample string 2",
"signature": "sample string 3"
}
application/xml, text/xml
Sample:
<RequestFromGlobxController.CheckTradingAccountRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.API"> <currency>sample string 2</currency> <signature>sample string 3</signature> <tradingAccountId>sample string 1</tradingAccountId> </RequestFromGlobxController.CheckTradingAccountRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
CheckTradingAccountResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| isSuccess | boolean |
None. |
|
| Currency | string |
None. |
|
| TradingAccount | Collection of TradingAccount |
None. |
|
| message | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"isSuccess": true,
"Currency": "sample string 2",
"TradingAccount": [
{
"TradingAccountId": "sample string 1"
},
{
"TradingAccountId": "sample string 1"
}
],
"message": {}
}
application/xml, text/xml
Sample:
<RequestFromGlobxController.CheckTradingAccountResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebAPI.API">
<Currency>sample string 2</Currency>
<TradingAccount>
<RequestFromGlobxController.TradingAccount>
<TradingAccountId>sample string 1</TradingAccountId>
</RequestFromGlobxController.TradingAccount>
<RequestFromGlobxController.TradingAccount>
<TradingAccountId>sample string 1</TradingAccountId>
</RequestFromGlobxController.TradingAccount>
</TradingAccount>
<isSuccess>true</isSuccess>
<message />
</RequestFromGlobxController.CheckTradingAccountResponse>