devguard
Business rolesId

Update a businessRole by id.

PATCH
/business-roles/{id}/

Authorization

Authorization
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X PATCH "https://example.com/business-roles/string/" \  -H "Content-Type: application/json" \  -d '{    "slug": "string",    "name": "string",    "users": [      "string"    ]  }'
{  "id": "string",  "slug": "string",  "name": "string",  "description": "string",  "archivedAt": "string",  "organizationId": "string",  "users": [    "string"  ]}

How is this guide?