Session
Authorizations
AuthorizationstringRequired
Session-scoped Bearer token for authenticated end-user operations. Used by the Limio SDK to retrieve user-specific data such as entitlements. Tokens are issued during the checkout or login flow.
Responses
200
OK
application/json
ownerstringOptional
The limio identity that owns the session.
401
Unauthorized: the request lacks valid authentication credentials. Verify your Bearer token or API key is correct and has not expired.
application/json
502
Bad Gateway — an upstream service returned an unexpected response. This typically indicates an issue with the request payload (e.g. invalid field values, missing required fields) or a transient infrastructure error. Retry the request, and if the issue persists, verify the request body matches the expected schema.
application/json
get/session/entitlements
GET /api/session/entitlements HTTP/1.1
Host: your-environment.prod.limio.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"owner": "text",
"entitlements": [
{
"code": "text",
"startDate": "2026-01-01",
"endDate": "2026-01-01",
"effectiveDate": "2026-01-01",
"type": "subscription",
"from": "text"
}
]
}Last updated
Was this helpful?

