GET v1/CustomerSims

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Lhp.EquipmentIntelligence.WebApi.Models.V1.CustomerSimModel
NameDescriptionTypeAdditional information
CustomerId

ID of the customer this SIM is associated with.

integer

None.

SimId

ID of the SIM.

integer

None.

CustomerSimStatusId

Status of the association of this SIM to the Customer.

Lhp.EquipmentIntelligence.CustomerSimStatuses

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerId": 1,
    "SimId": 2,
    "CustomerSimStatusId": 0
  },
  {
    "CustomerId": 1,
    "SimId": 2,
    "CustomerSimStatusId": 0
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerSimModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <CustomerSimModel>
    <CustomerId>1</CustomerId>
    <SimId>2</SimId>
    <CustomerSimStatusId>None</CustomerSimStatusId>
  </CustomerSimModel>
  <CustomerSimModel>
    <CustomerId>1</CustomerId>
    <SimId>2</SimId>
    <CustomerSimStatusId>None</CustomerSimStatusId>
  </CustomerSimModel>
</ArrayOfCustomerSimModel>