Skip to main content
GET
/
licenses
Error
A valid request URL is required to generate request examples
{
  "items": [
    {
      "licenseId": "<string>",
      "status": "PENDING",
      "type": "<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"
        }
      },
      "activatedAt": "2023-12-25",
      "assignedTo": {
        "type": "SUBSCRIPTION",
        "subscriptionId": "<string>",
        "subscriptionDisplay": "<string>"
      },
      "details": {},
      "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"
          }
        }
      },
      "cancelledAt": "2023-12-25",
      "pausedAt": "2023-12-25",
      "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.

type
string[]

The type of license to filter by.

The type of license, categorizing the software product or service into various telecommunications license 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 licenses.

items
object[]
pagination
object