Legacy Session & Entitlements API

Legacy user context endpoints retained for older integrations.

Warning

GET /api/v1/me and GET /api/v1/me/entitlements are legacy endpoints. New integrations should use GET /api/v1/auth/me for current user and tenant context. Health endpoints are documented on the Authentication API.

Endpoints

MethodPathDescription
GET/api/v1/meLegacy current user/tenant context
GET/api/v1/me/entitlementsLegacy tenant entitlement list

GET /api/v1/me

Returns the identity context associated with your credentials. Prefer /api/v1/auth/me for new integrations.

Shell
curl {{BASE_URL}}/api/v1/me \
-H "Authorization: Bearer $CONFORMA_PAT"

Response 200 OK — a JSON object describing the tenant and user context.


GET /api/v1/me/entitlements

Returns the list of module keys the current tenant is entitled to use. Endpoints belonging to a module that is not active for the tenant can respond with 403 Forbidden.

Shell
curl {{BASE_URL}}/api/v1/me/entitlements \
-H "Authorization: Bearer $CONFORMA_PAT"

Use it only when maintaining an older integration that still depends on this shape.