Skip to main content
GET
/
v2
/
app-resource-entitlements
List App Resource Entitlements
curl --request GET \
  --url https://public.api.serval.com/v2/app-resource-entitlements \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "resourceId": "<string>",
      "name": "<string>",
      "description": "<string>",
      "provisioningMethod": "<string>",
      "requestsEnabled": true,
      "accessPolicyId": "<string>",
      "linkedEntitlementIds": [
        "<string>"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

resourceId
string

The ID of the resource.

Response

Success

data
Entitlement · object[]

The list of entitlements.

I