PATCH
/chat/waiting-list/{id_waiting_list}
curl \
--request PATCH 'https://domain.tld/api/v2/chat/waiting-list/{id_waiting_list}' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--header "X-Popsell-Brand: 3" \
--data '{"id_chatroom":1,"date_handled":"2020-01-01T00:00:00Z","id_chat_topic":1,"content":"Help me"}'
Request examples
# Headers
X-Popsell-Brand: 3
# Payload
{
"id_chatroom": 1,
"date_handled": "2020-01-01T00:00:00Z",
"id_chat_topic": 1,
"content": "Help me"
}