GET /platform/license
curl \
-X GET https://{{hostname}}/api/v1/platform/license
Response examples (200)
{
"license": {
"version": 42,
"uid": "string",
"issuer": "string",
"issued_to": "string",
"issue_date_in_millis": 42,
"type": "string",
"subscription_type": "string",
"signature": "string",
"start_date_in_millis": 42,
"expiry_date_in_millis": 42,
"max_allocators": 42,
"max_ram_per_allocator_mb": 42,
"max_instances": 42,
"max_resource_units": 42,
"operation_mode": "string",
"cluster_licenses": [
{
"license": {}
}
]
},
"usage_stats": {
"total_connected_memory_total": 42
}
}
Response examples (404)
# Headers
x-cloud-error-codes: license.license_not_found
# Payload
{
"errors": [
{
"code": "string",
"message": "string",
"fields": [
"string"
]
}
]
}