GET
api/v1/get-customer-registration-summary?year={year}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| year | integer |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: CustomerRegistrationSummaryResponse
Response Formats
application/json, text/json
{
"CustomerRegistrationSummaryList": [
{
"Month": "sample string 1",
"CustomerCount": 2
},
{
"Month": "sample string 1",
"CustomerCount": 2
}
]
}
text/html
{"CustomerRegistrationSummaryList":[{"Month":"sample string 1","CustomerCount":2},{"Month":"sample string 1","CustomerCount":2}]}
application/xml, text/xml
<CustomerRegistrationSummaryResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Report">
<CustomerRegistrationSummaryList>
<CustomerRegistrationSummary>
<CustomerCount>2</CustomerCount>
<Month>sample string 1</Month>
</CustomerRegistrationSummary>
<CustomerRegistrationSummary>
<CustomerCount>2</CustomerCount>
<Month>sample string 1</Month>
</CustomerRegistrationSummary>
</CustomerRegistrationSummaryList>
</CustomerRegistrationSummaryResponse>
