Vigilfield Docs
API referenceClients

`PATCH /clients/{id}` — update name / scopes. A scopes change re-runs the owning app's subset cap.

PATCH/clients/{id}

Path Parameters

id*string

Client id

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

PATCH /clients/{id} body — every field optional (absent = unchanged). Changing scopes re-runs the subset cap.

Response Body

application/json

curl -X PATCH "https://example.com/clients/string" \  -H "Content-Type: application/json" \  -d '{}'
{  "client_id": "string",  "created_at": "string",  "installation_id": "string",  "last_used_at": "string",  "name": "string",  "scopes": [    "string"  ],  "updated_at": "string"}