Skip to main content
GET
/
orders
/
catalog
Get all services items
curl --request GET \
  --url https://api.example.com/orders/catalog \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": 123,
      "product": "<string>",
      "enable": true,
      "operator": "<string>",
      "location": "<string>",
      "base_quantity": 123,
      "base_unit": "<string>",
      "monthly_recurring_charge": {
        "value": 123,
        "currency": "<string>"
      },
      "non_recurring_charge": {
        "value": 123,
        "currency": "<string>"
      },
      "contract_period": 123,
      "billing_type": "<string>",
      "additional_price": {
        "value": 123,
        "currency": "<string>"
      },
      "additional_unit": "<string>",
      "discount": 123,
      "customer_package": "<string>"
    }
  ],
  "count": 0,
  "total_count": 0
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

product
enum<string> | null
Available options:
dpi,
sdr,
firewall,
dia_fw,
ddos,
ids,
dns,
fqdn,
tenant_service_package,
remote_user,
nat,
dia,
customer_port,
connection,
direct_connection,
cloud_router,
dia_connection,
direct_cloud_link,
cr_cloud_link,
direct_elan_connection
enable
boolean | null
operator
string | null
location
string | null
base_quantity
number | null
base_unit
string | null
contract_period
integer | null
additional_unit
string | null
discount
integer | null
customer_package
string | null
limit
integer
default:0
offset
integer
default:0

Response

Successful Response

items
NBServiceItem · object[]
required
count
integer
default:0
total_count
integer
default:0