GET customers/{customerId}
Returns subcustomer by subcustomer's ID.
URL Parameters
Name | Description |
---|---|
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-11-08T12:46:54", "period_to_utc": "2024-11-08T12:46:54", "global_check_quota": 1000, "enabled": true } }
Name | Type | 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. |