v1

latestOpenAPI 3.0.02026-08-0491343.5 KB
licenses

Assigns license access to the given users

post/api/v1/licenses/assignments/actions/add

Headers

authorizationstring bearer

Authentication token

Request body

Example request

{
  "add": [
    {
      "type": "professional",
      "subject": "qlik\\kalle"
    },
    {
      "type": "analyzer",
      "subject": "qlik\\nalle"
    }
  ]
}

Response

Processed. (The status of the individual assignments is found in the response body)

Example response

{
  "data": [
    {
      "type": "professional",
      "status": 201,
      "subject": "qlik\\kalle"
    },
    {
      "code": "LICENSES-011",
      "type": "analyzer",
      "title": "No available allotment error, No available allotment.",
      "status": 403,
      "subject": "qlik\\nalle"
    }
  ]
}