api/v1/customers
Method: GET https://developers.mobilemanager.co.uk/api/v1/customers?skip={skip}&take={take}&search={search}&hidden={hidden}&sortBy={sortBy}&sortOrder={sortOrder}
Summary
Get a list of customers that belongs to a reseller by ID and matching selected criteria.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| skip |
Optional, the number of records to skip |
integer |
None. |
| take |
Optional, the number of records requested |
integer |
None. |
| search |
Optional, customer name or email, can be partial match |
string |
None. |
| hidden |
Optional, show hidden customers as default false |
boolean |
None. |
| sortBy |
The name of the parameter by which you wish to sort. 'allowanceused' is default. Optional |
string |
None. |
| sortOrder |
Enter 'asc' for ascending or 'desc' for descending sort. Ascending is default behaviour. Optional |
string |
Default value is asc |
Body Parameters
None.
Response Information
Resource Description
List of customers matching criteria.
Collection of CustomerOverview| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Name | string |
None. |
|
| string |
None. |
||
| TotalSims | integer |
None. |
|
| UnactivatedSims | integer |
None. |
|
| InactiveSims | integer |
None. |
|
| ActiveBoltOns | integer |
None. |
|
| TotalData | integer |
None. |
|
| ActiveSims | integer |
None. |
|
| Status | string |
None. |
|
| Hidden | boolean |
None. |
|
| DefaultPool | string |
None. |
|
| DefaultPoolId | globally unique identifier |
None. |
|
| DefaultPrivateAPN | string |
None. |
|
| DateCreated | date |
None. |
|
| ICCID | string |
None. |
Response Formats
application/json, text/json
[
{
"Id": "0049d949-9cec-4ec3-9d87-d4b866aad7c2",
"Name": "sample string 2",
"Email": "sample string 3",
"TotalSims": 4,
"UnactivatedSims": 5,
"InactiveSims": 6,
"ActiveBoltOns": 7,
"TotalData": 8,
"ActiveSims": 9,
"Status": "sample string 10",
"Hidden": true,
"DefaultPool": "sample string 12",
"DefaultPoolId": "830541f4-a05a-4c25-a14f-862ad8c8077f",
"DefaultPrivateAPN": "sample string 14",
"DateCreated": "2025-10-22T06:32:19.1694486+00:00",
"ICCID": "sample string 15"
},
{
"Id": "0049d949-9cec-4ec3-9d87-d4b866aad7c2",
"Name": "sample string 2",
"Email": "sample string 3",
"TotalSims": 4,
"UnactivatedSims": 5,
"InactiveSims": 6,
"ActiveBoltOns": 7,
"TotalData": 8,
"ActiveSims": 9,
"Status": "sample string 10",
"Hidden": true,
"DefaultPool": "sample string 12",
"DefaultPoolId": "830541f4-a05a-4c25-a14f-862ad8c8077f",
"DefaultPrivateAPN": "sample string 14",
"DateCreated": "2025-10-22T06:32:19.1694486+00:00",
"ICCID": "sample string 15"
}
]
application/xml, text/xml
<ArrayOfCustomerOverview xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/JolaSimPortal.Shared.Models.Customer">
<CustomerOverview>
<ActiveBoltOns>7</ActiveBoltOns>
<ActiveSims>9</ActiveSims>
<DateCreated>2025-10-22T06:32:19.1694486+00:00</DateCreated>
<DefaultPool>sample string 12</DefaultPool>
<DefaultPoolId>830541f4-a05a-4c25-a14f-862ad8c8077f</DefaultPoolId>
<DefaultPrivateAPN>sample string 14</DefaultPrivateAPN>
<Email>sample string 3</Email>
<Hidden>true</Hidden>
<ICCID>sample string 15</ICCID>
<Id>0049d949-9cec-4ec3-9d87-d4b866aad7c2</Id>
<InactiveSims>6</InactiveSims>
<Name>sample string 2</Name>
<Status>sample string 10</Status>
<TotalData>8</TotalData>
<TotalSims>4</TotalSims>
<UnactivatedSims>5</UnactivatedSims>
</CustomerOverview>
<CustomerOverview>
<ActiveBoltOns>7</ActiveBoltOns>
<ActiveSims>9</ActiveSims>
<DateCreated>2025-10-22T06:32:19.1694486+00:00</DateCreated>
<DefaultPool>sample string 12</DefaultPool>
<DefaultPoolId>830541f4-a05a-4c25-a14f-862ad8c8077f</DefaultPoolId>
<DefaultPrivateAPN>sample string 14</DefaultPrivateAPN>
<Email>sample string 3</Email>
<Hidden>true</Hidden>
<ICCID>sample string 15</ICCID>
<Id>0049d949-9cec-4ec3-9d87-d4b866aad7c2</Id>
<InactiveSims>6</InactiveSims>
<Name>sample string 2</Name>
<Status>sample string 10</Status>
<TotalData>8</TotalData>
<TotalSims>4</TotalSims>
<UnactivatedSims>5</UnactivatedSims>
</CustomerOverview>
</ArrayOfCustomerOverview>