GET
/
v1
/
teams
/
{team_id}
/
entitlements
List Entitlements
curl --request GET \
  --url https://public.api.serval.com/v1/teams/{team_id}/entitlements \
  --header 'Authorization: Bearer <token>'
{
  "entitlements": [
    {
      "id": "<string>",
      "resourceId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "provisioningMethod": "<string>",
      "requestsEnabled": true,
      "accessPolicyId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

team_id
string
required

The ID of the Serval team.

Query Parameters

appInstanceId
string

Optional filter by app instance ID.

resourceId
string

Optional filter by resource ID.

Response

200
application/json

Success

The response is of type object.