api/v1/pools/{id}/usage

Method: GET https://simportal-api-staging.azurewebsites.net/api/v1/pools/{id}/usage

Summary

Get the usage of a pool this month

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The unique Id of a pool

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

PoolModel
NameDescriptionTypeAdditional information
Id

globally unique identifier

None.

Type

string

None.

PoolName

string

None.

Operator

string

None.

Usage

integer

None.

Sims

All SIMs associated with this pool

Collection of SimpleSimModel

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "3a6f4c2a-7258-4cae-8a65-0ec565f1e31d",
  "Type": "sample string 2",
  "PoolName": "sample string 3",
  "Operator": "sample string 4",
  "Usage": 1,
  "Sims": [
    {
      "Id": "668dc92d-0065-4866-afdc-4cd24b4c08c6",
      "ModileNumber": "sample string 2",
      "ICCID": "sample string 3",
      "State": 0,
      "Operator": "sample string 4",
      "CustomerName": "sample string 5",
      "SimTag": "sample string 6",
      "HasBoltons": true,
      "Tariff": "sample string 8",
      "TariffAllowance": 9
    },
    {
      "Id": "668dc92d-0065-4866-afdc-4cd24b4c08c6",
      "ModileNumber": "sample string 2",
      "ICCID": "sample string 3",
      "State": 0,
      "Operator": "sample string 4",
      "CustomerName": "sample string 5",
      "SimTag": "sample string 6",
      "HasBoltons": true,
      "Tariff": "sample string 8",
      "TariffAllowance": 9
    }
  ]
}

application/xml, text/xml

Sample:
<PoolModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers">
  <Id>3a6f4c2a-7258-4cae-8a65-0ec565f1e31d</Id>
  <Operator>sample string 4</Operator>
  <PoolName>sample string 3</PoolName>
  <Sims>
    <SimpleSimModel>
      <CustomerName>sample string 5</CustomerName>
      <HasBoltons>true</HasBoltons>
      <ICCID>sample string 3</ICCID>
      <Id>668dc92d-0065-4866-afdc-4cd24b4c08c6</Id>
      <ModileNumber>sample string 2</ModileNumber>
      <Operator>sample string 4</Operator>
      <SimTag>sample string 6</SimTag>
      <State>Active</State>
      <Tariff>sample string 8</Tariff>
      <TariffAllowance>9</TariffAllowance>
    </SimpleSimModel>
    <SimpleSimModel>
      <CustomerName>sample string 5</CustomerName>
      <HasBoltons>true</HasBoltons>
      <ICCID>sample string 3</ICCID>
      <Id>668dc92d-0065-4866-afdc-4cd24b4c08c6</Id>
      <ModileNumber>sample string 2</ModileNumber>
      <Operator>sample string 4</Operator>
      <SimTag>sample string 6</SimTag>
      <State>Active</State>
      <Tariff>sample string 8</Tariff>
      <TariffAllowance>9</TariffAllowance>
    </SimpleSimModel>
  </Sims>
  <Type>sample string 2</Type>
  <Usage>1</Usage>
</PoolModel>