Skip to main content
GET
/
v2
/
app-instances
/
{id}
Get App Instance
curl --request GET \
  --url https://public.api.serval.com/v2/app-instances/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "teamId": "<string>",
    "service": "<string>",
    "instanceId": "<string>",
    "name": "<string>",
    "accessRequestsEnabled": true,
    "defaultAccessPolicyId": "<string>"
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The ID of the app instance.

Response

Success

data
object

The app instance.

I