CASE FrameworkCASE Framework
Management APIService accounts

Create service account

POST
/v1/user-management/service-accounts/

Authorization

BearerAuth
AuthorizationBearer <token>

In: header

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 POST "https://example.com/v1/user-management/service-accounts/" \  -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"
}