Reference / Entitlements

Resolve every feature for a subject — what an app fetches to gate its UI.

GET /v1/entitlements/resolve-all
Secret API key operationId: resolve_all

Authorization

Server-to-server. Send a secret key as a Bearer token plus the x-application-id header.

Query parameters

  • feature string optional

    Required for single-feature resolution.

  • organization_id string optional
  • plan string optional

Responses

200 All resolved entitlements
{
  "data": [
    {
      "feature_key": "string",
      "kind": "string",
      "source": "string",
      "value": {}
    }
  ],
  "error": {
    "code": "string",
    "message": "string"
  },
  "meta": {
    "timestamp": "string"
  },
  "success": false
}

Request

curl -X GET "http://localhost:8080/v1/entitlements/resolve-all" \

Try it

live request
GET http://localhost:8080/v1/entitlements/resolve-all

Query parameters