CASE FrameworkCASE Framework
Management APIService accounts

Update service account

PUT
/v1/user-management/service-accounts/{serviceAccountID}

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

serviceAccountID*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X PUT "https://example.com/v1/user-management/service-accounts/string" \  -H "Content-Type: application/json" \  -d '{    "label": "string",    "description": "string"  }'
{
  "serviceAccount": {
    "id": "string",
    "label": "string",
    "description": "string",
    "createdAt": "2019-08-24T14:15:22Z"
  }
}
{
  "error": "string"
}
{
  "error": "string"
}
{
  "error": "string"
}