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
| Method | Path | Description |
|---|---|---|
GET | /api/v1/me | Legacy current user/tenant context |
GET | /api/v1/me/entitlements | Legacy 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.