Skip to main content
GET
/
v2
/
app-resources
List All App Resources
curl --request GET \
  --url https://public.api.serval.com/v2/app-resources \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "appInstanceId": "<string>",
      "resourceType": "<string>",
      "name": "<string>",
      "description": "<string>",
      "externalId": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

teamId
string

Filter by team ID. Lists all resources across all app instances for the specified team.

appInstanceIds
string[]

Filter by app instance IDs.

externalIds
string[]

Filter by external IDs. Requires app_instance_ids to have exactly one entry.

Response

Success

data
Resource · object[]

The list of resources.