api/v1/customers/{id}
Method: GET https://simportal-api-staging.azurewebsites.net/api/v1/customers/{id}
Summary
Get a single customer that belongs to a reseller by ID
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
The unique id of a customer |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
CustomerDetailsModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ActiveSims | integer |
None. |
|
| Id | globally unique identifier |
None. |
|
| InactiveSims | integer |
None. |
|
| Name | string |
None. |
|
| Status | string |
None. |
|
| TotalSims | integer |
None. |
|
| UnactivatedSims | integer |
None. |
|
| DefaultPoolName | string |
None. |
|
| DefaultPoolId | globally unique identifier |
None. |
Response Formats
application/json, text/json
Sample:
{
"ActiveSims": 1,
"Id": "809412a3-07e8-41b2-9f16-824be048d0d0",
"InactiveSims": 3,
"Name": "sample string 4",
"Status": "sample string 5",
"TotalSims": 6,
"UnactivatedSims": 7,
"DefaultPoolName": "sample string 8",
"DefaultPoolId": "86f42f8d-4bac-4dfd-a863-049c54c486a9"
}
application/xml, text/xml
Sample:
<CustomerDetailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers" />