GET   customers/{customerId}

Returns subcustomer by subcustomer's ID.

URL Parameters

NameDescription
customerId

Request example

curl --request GET "https://api-asm1.apica.io/v3/customers/789?auth_ticket=C471ADC4-19B4-4219-BBF4-671A97EC653E"

Response body model example and description

{
  "id": 1,
  "name": "Apica",
  "subscription": {
    "subscription_type": "Standard",
    "period_from_utc": "2024-05-19T08:32:13",
    "period_to_utc": "2024-05-19T08:32:13",
    "global_check_quota": 1000,
    "enabled": true
  }
}
NameType Description
id Integer

The customer's numeric identity.

name String

Customer name.

subscription Object

Customer subscription data.

subscription_type String

The customer's subscription type. Available values: 'Standard', 'PoC', 'Evaluation', 'Trial'

period_from_utc DateTime

Subscription start period.

period_to_utc DateTime

Subscription end period.

global_check_quota Integer

The checks quota.

enabled Boolean

Subscription is enabled.