GET
/
billing
/
org
/
v1
/
subscriptions
List ClientFeatures
curl --request GET \
  --url https://api.gcore.com/billing/org/v1/subscriptions \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "client_id": 123,
      "client": {
        "id": 2,
        "company_name": "<string>"
      },
      "feature": {
        "id": 123,
        "name": "<string>",
        "erp_sku_id": "<string>"
      },
      "metric_ext_name": "<string>",
      "regions": [
        {
          "id": 123,
          "name": "<string>",
          "external_name": "<string>"
        }
      ],
      "rounding_rule": {
        "unit": {
          "id": 2,
          "name": "<string>",
          "internal_name": "<string>"
        },
        "value": "<string>",
        "round_operation": "ceil"
      },
      "product": {
        "id": 123,
        "name": "<string>",
        "internal_name": "<string>"
      },
      "product_category": {
        "id": 123,
        "name": "<string>"
      },
      "prices": [
        {
          "active_range": {
            "start": "2023-11-07T05:31:56Z",
            "end": "2023-11-07T05:31:56Z"
          },
          "price": {
            "unit": {
              "id": 2,
              "name": "<string>",
              "internal_name": "<string>"
            },
            "default_value": "<string>",
            "currency": {
              "id": 123,
              "char_code": "<string>",
              "symbol": "<string>"
            },
            "type": "<string>",
            "net_value": "<string>",
            "money_value": "<string>",
            "steps": [
              {
                "threshold": "<string>",
                "net_value": "<string>",
                "gross_value": "<string>"
              }
            ]
          },
          "plan": {
            "id": 123,
            "name": "<string>"
          },
          "subscription": {
            "id": 123,
            "active_range": {
              "start": "2023-11-07T05:31:56Z",
              "end": "2023-11-07T05:31:56Z"
            }
          },
          "tax_rate": "<string>"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

API key for authentication. Make sure to include the word apikey, followed by a single space and then your token. Example: apikey 1234$abcdef

Query Parameters

calc_rule_type
(enum<string> | null)[]

Filter by calculation rule type of the subscription. Can be multiple.

* commit - commit * overcommit - overcommit * stepped - stepped * staged - staged * unit - unit * post_invoice - post_invoice

client_id
integer[]

Filter by client ID. Can be multiple.

company_name
string

Filter by client's company name (client's name). Case insensitive. Supports partial matches.

feature_erp_sku_id
string

Filter by feature ERP SKU ID. Exact match.

feature_id
integer[]

Filter by feature ID. Can be multiple.

feature_name
string

Filter by feature name. Case insensitive. Supports partial matches.

id
integer
limit
integer

Number of results to return per page.

metric_ext_name
string

Filter by metric code. Case insensitive. Supports partial matches.

metric_id
integer[]

Filter by metric ID. Can be multiple.

offset
integer

The initial index from which to return the results.

ordering
enum<string>[]

Ordering of the results.

Default sort order is ascending. Put - before value for descending sort order: -id.

For sorting by multiple parameters write them as comma separated string: -client_id,id.

* client_id - Client id * -client_id - Client id (descending) * feature_id - Feature id * -feature_id - Feature id (descending) * feature_name - Feature name * -feature_name - Feature name (descending) * product_name - Product name * -product_name - Product name (descending) * product_id - Product id * -product_id - Product id (descending)

product_id
integer[]

Filter by product ID. Can be multiple.

Returns products with the specified ID.

Examples:

* &product_id=1

* &product_id=1&product_id=2

Available values:

* 1 - CDN

* 2 - Object Storage

* 3 - Web Security

* 4 - Streaming

* 5 - Cloud

* 6 - Colocation Services

* 7 - WG Private Cloud

* 8 - p2p

* 9 - DDoS Protection

* 10 - Managed DNS

* 11 - Other Services

* 12 - Premium Support

* 13 - Connectivity

* 14 - Hosting (G-Hosting)

* 15 - Managed Services

* 16 - Rent

* 17 - Software development

* 18 - VM Ware

* 19 - LaaS

* 20 - AWS Cloud

* 21 - FastEdge

* 22 - Technical Support

* 23 - WAAP

product_internal_name
string[]

Filter by product internal name. Can be multiple.

Returns products with the specified internal name.

Examples:

* &product_internal_name=CDN

* &product_internal_name=CDN&product_internal_name=DNS

Available values:

* AWS_CLOUD - AWS Cloud

* CDN - CDN

* CLOUD - Cloud

* CONNECT - Colocation Services

* CONNECTIVITY - Connectivity

* DDOS - Web Security

* DNS - Managed DNS

* FAST_EDGE - FastEdge

* GHOST - Hosting (G-Hosting)

* INFRASTRUCTURE_PROTECTION - DDoS Protection

* LAAS - LaaS

* MANAGED_SERVICES - Managed Services

* OTHER_SERVICES - Other Services

* P2P - p2p

* PREMIUM_SUPPORT - Premium Support

* RENT - Rent

* SOFTWARE_DEVELOPMENT - Software development

* STORAGE - Object Storage

* STREAMING - Streaming

* TECHNICAL_SUPPORT - Technical Support

* VMWARE - VM Ware

* WAAP - WAAP

* WG_PRIVATE_CLOUD - WG Private Cloud

product_name
string

Filter by product name. Case insensitive. Supports partial matches.

provider_id
integer[]

Filter by provider ID. Can be multiple.

reseller_id
integer[]

Filter by reseller ID. Can be multiple.

Response

200 - application/json
count
integer
required
Example:

123

results
object[]
required
next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"