api/v1/customers
Method: POST https://developers.mobilemanager.co.uk/api/v1/customers
Summary
Create a customer
Request Information
URI Parameters
None.
Body Parameters
The CustomerModel contains all of the information regarding a customer
CustomerModelName | Description | Type | Additional information |
---|---|---|---|
DefaultEmail | string |
None. |
|
Name | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "DefaultEmail": "sample string 1", "Name": "sample string 2" }
application/xml, text/xml
Sample:
<CustomerModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers"> <DefaultEmail>sample string 1</DefaultEmail> <Name>sample string 2</Name> </CustomerModel>
application/x-www-form-urlencoded
Sample:
DefaultEmail=samplestring&Name=samplestring
Response Information
Resource Description
CustomerDetailsModelName | 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": "fcaea90a-247f-4843-a348-5a6f6d1f6496", "InactiveSims": 3, "Name": "sample string 4", "Status": "sample string 5", "TotalSims": 6, "UnactivatedSims": 7, "DefaultPoolName": "sample string 8", "DefaultPoolId": "816254dd-4cfa-4e2b-812a-5b670432be76" }
application/xml, text/xml
Sample:
<CustomerDetailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers" />