GET api/account/customer/overview
Get an overview of customer accounts Processes this account API request. The parameter and response sections describe the data exchanged with the API.
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
The response returned after the operation completes.
CustomerAccountsOverviewDataContract| Name | Description | Type | Additional information |
|---|---|---|---|
| TotalAmount |
The total amount value. |
decimal number |
None. |
| TotalActive |
The total active value. |
decimal number |
None. |
| TotalDormant |
The total dormant value. |
decimal number |
None. |
| CountOfActiveAccounts |
The count of active accounts value. |
integer |
None. |
| CountOfDormantAccounts |
The count of dormant accounts value. |
integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"TotalAmount": 1.0,
"TotalActive": 2.0,
"TotalDormant": 3.0,
"CountOfActiveAccounts": 4,
"CountOfDormantAccounts": 5
}