Create an App Client

post/app-clients
Request
Request Body schema: application/json

request

name
required
string
description
string
userRoles
Array of integers
Responses
201

Created

400

Bad Request

401

Unauthorized

403

Forbidden

Request samples
application/json
{
  • "name": "string",
  • "description": "string",
  • "userRoles": [
    • 1
    ]
}
Response samples
application/json
{
  • "id": 1,
  • "contractOwnerId": 1,
  • "name": "string",
  • "description": "string",
  • "appClientId": "string",
  • "lastSuccessfulAuthentication": "2019-08-24T14:15:22Z",
  • "lastFailedAuthentication": "2019-08-24T14:15:22Z",
  • "userRoles": [
    • 1
    ],
  • "clientSecret": "string"
}