GET
/
v1
/
teams
/
{team_id}
/
resources
List Resources
curl --request GET \
  --url https://public.api.serval.com/v1/teams/{team_id}/resources \
  --header 'Authorization: Bearer <token>'
{
  "resources": [
    {
      "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.

Path Parameters

team_id
string
required

The ID of the Serval team.

Query Parameters

appInstanceId
string

Optional filter by app instance ID.

Response

200
application/json

Success

The response is of type object.