api/v1/customers
Method: POST https://simportal-api-staging.azurewebsites.net/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": "efb6b3d2-f3ae-469f-b1b5-391b8a60d687", "InactiveSims": 3, "Name": "sample string 4", "Status": "sample string 5", "TotalSims": 6, "UnactivatedSims": 7, "DefaultPoolName": "sample string 8", "DefaultPoolId": "88006e78-0767-4fed-a8ee-65895bcd38a5" }
application/xml, text/xml
Sample:
<CustomerDetailsModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers" />