Update an app instance’s configuration.
cURL
curl --request PATCH \ --url https://public.api.serval.com/v1/teams/{team_id}/app-instances/{app_instance_id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "defaultAccessPolicyId": "<string>" }'
{ "appInstance": { "id": "<string>", "teamId": "<string>", "service": "<string>", "instanceId": "<string>", "name": "<string>", "accessRequestsEnabled": true, "defaultAccessPolicyId": "<string>" } }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
The ID of the Serval team.
The ID of the app instance to update.
Success
The response is of type object.
object