Path parameters

  • id integer(int32) Required

    The id of the chat topic

application/json

Body Required

Responses

  • 200 application/json

    Returns the updated chat topic

    Hide response attributes Show response attributes object
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
  • Forbidden - You don't have permission to access this route

  • Not found

  • 422 application/json

    Unprocessable Content

    Hide response attributes Show response attributes object
    • message string

      Error message.

    • errors object
      Hide errors attributes Show errors attributes object
      • field array[string]

        Error message details.

      • * array[string] Additional properties

        Error message details.

PATCH /manager/chat-topics/{id}
curl \
 -X PATCH https://domain.tld/api/v2/manager/chat-topics/{id} \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"active":true,"position":42,"color":"string","contents":[{"lang":"en_GB","content":"Hello"}]}'
Request examples
{
  "active": true,
  "position": 42,
  "color": "string",
  "contents": [
    {
      "lang": "en_GB",
      "content": "Hello"
    }
  ]
}
Response examples (200)
{
  "id_chat_topic": 8,
  "color": "#FF0000",
  "contents": [
    {
      "id_i18n_content": 42,
      "lang": "en_GB",
      "content": "Hello"
    }
  ],
  "position": 1,
  "date_insert": "2021-06-01T00:00:00Z",
  "roles": [
    "administrator",
    "seller"
  ],
  "date_update": "2022-06-01T00:00:00Z",
  "active": true
}
Response examples (401)
{
  "message": "Unauthorized."
}
Response examples (422)
{
  "message": "field is required! (and 3 more error)",
  "errors": {
    "field": [
      "Error message details here"
    ],
    "additionalProperty1": [
      "Error message details here"
    ],
    "additionalProperty2": [
      "Error message details here"
    ]
  }
}