GET api/v{version}/prism/customers/accountsummary
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| version |
The requested API version |
string |
Required Default value is 1 |
Body Parameters
None.
Response Information
Resource Description
ResponseObjectOfAccountBalance| Name | Description | Type | Additional information |
|---|---|---|---|
| statusCode | integer |
None. |
|
| errorMessage | string |
None. |
|
| success | boolean |
None. |
|
| result | AccountBalance |
None. |
Response Formats
application/json, text/json
Sample:
{
"statusCode": 1,
"errorMessage": "sample string 2",
"success": true,
"result": {
"Balance": 1
}
}
text/javascript
Sample:
{"statusCode":1,"errorMessage":"sample string 2","success":true,"result":{"Balance":1}}
application/xml, text/xml
Sample:
<ResponseObjectOfAccountBalancepy23hYYa xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/UNITE.External.API.Models">
<ErrorMessage>sample string 2</ErrorMessage>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/UNITE.External.API.Support.Prism">
<d2p1:Balance>1</d2p1:Balance>
</Result>
<StatusCode>1</StatusCode>
<Success>true</Success>
</ResponseObjectOfAccountBalancepy23hYYa>