Skip to main content
GET
/
subscriptions
Error
A valid request URL is required to generate request examples
{
  "items": [
    {
      "subscriptionId": "<string>",
      "status": "PENDING",
      "type": "<string>",
      "display": "<string>",
      "msisdn": "<string>",
      "customer": {
        "customerId": "<string>",
        "name": "<string>"
      },
      "productOffering": {
        "productOfferingId": "<string>",
        "name": "<string>",
        "price": {
          "currency": "USD",
          "discount": 5,
          "netPrice": 5,
          "priceType": "ONE_TIME",
          "boundMonths": 12,
          "billingCycle": {
            "period": "MONTHLY",
            "interval": 1
          }
        },
        "productOfferingGroupId": "<string>",
        "group": {
          "productOfferingGroupId": "<string>",
          "name": "<string>",
          "category": "SUBSCRIPTION_CELL"
        }
      },
      "sim": {
        "esim": true,
        "imei": "<string>",
        "iccid": "<string>"
      },
      "activatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "subscriber": {
        "subscriberId": "<string>",
        "name": "<string>",
        "email": "[email protected]",
        "address": {
          "street1": "500 S Main St",
          "city": "Natick",
          "zip": "01701",
          "country": "US",
          "street2": "Apt 1",
          "state": "CA",
          "region": "<string>",
          "attention": "<string>"
        },
        "createdAt": "2023-11-07T05:31:56Z",
        "updatedAt": "2023-11-07T05:31:56Z"
      },
      "extensions": {},
      "pendingMsisdn": {
        "msisdn": "<string>",
        "scheduledAt": "2023-12-25"
      },
      "pendingStatus": {
        "status": "PENDING",
        "scheduledAt": "2023-12-25"
      },
      "pendingProductOffering": {
        "scheduledAt": "2023-12-25",
        "product": {
          "productOfferingId": "<string>",
          "name": "<string>",
          "price": {
            "currency": "USD",
            "discount": 5,
            "netPrice": 5,
            "priceType": "ONE_TIME",
            "boundMonths": 12,
            "billingCycle": {
              "period": "MONTHLY",
              "interval": 1
            }
          },
          "productOfferingGroupId": "<string>",
          "group": {
            "productOfferingGroupId": "<string>",
            "name": "<string>",
            "category": "SUBSCRIPTION_CELL"
          }
        }
      },
      "porting": {
        "msisdn": "<string>",
        "status": "PENDING",
        "direction": "INBOUND",
        "scheduledAt": "2023-12-25"
      },
      "cancelledAt": "2023-11-07T05:31:56Z",
      "metadata": {}
    }
  ],
  "pagination": {
    "total": 123,
    "limit": 123,
    "offset": 123,
    "sort": {
      "key": "<string>",
      "direction": "ASC"
    }
  }
}

Authorizations

X-Api-Key
string
header
required

An API key that grants access to the Connect API. You can create and manage API keys in the portal.

Query Parameters

customerId
string[]

The unique identifier of the customer to filter by.

status
enum<string>[]

The status of the subscription to filter by.

The status of the subscription.

Available options:
PENDING,
ACTIVATED,
BLOCKED,
CANCELLED,
PAUSED
type
string[]

The type of subscription, categorizing the service into various telecommunications service types.

limit
integer
default:100

The maximum number of items to return.

Required range: 1 <= x <= 1000
offset
integer
default:0

The number of items to skip before starting to collect the result set.

Required range: x >= 0

Response

A list of subscriptions.

items
object[]
pagination
object