Skip to main content
GET
/
entitlements
/
{id}
Get Entitlement by ID
curl --request GET \
  --url https://dev-entitlements-api.spectertech.ai/api/v1/entitlements/{id}
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "reportable": true,
  "createdAt": "<string>",
  "updatedAt": "<string>"
}

Path Parameters

id
string
required

Unique entitlement ID

Response

OK - Successful response

id
string

Unique identifier of the entitlement

name
string

Name of the entitlement

description
string

Detailed description of the entitlement

reportable
boolean

Indicates if the entitlement has usage reporting capability

createdAt
string

Timestamp of when the entitlement was created

updatedAt
string

Timestamp of when the entitlement was last updated

I