v1

latestOpenAPI 3.0.32026-07-24156161.2 MB
User Desks

Create desk

Create a New Desk

This endpoint allows you to create a new desk.

Request Body

  • name (string, required): The name of the desk.

  • userIds (array, required): An array of user IDs associated with the desk.

Response Body

The response will contain a JSON object with the following properties:

  • userDesk

    • id (string): The ID of the created desk.

    • name (string): The name of the desk.

    • userIds (array): An array of user IDs associated with the desk.

post/desks

Request body

namestring

Example request

{
  "name": "Test Tag33"
}

Response

Successful operation

Example response

{
  "userDesk": {
    "id": "4",
    "name": "Desk-English",
    "userIds": [
      "1"
    ]
  }
}