Headers
-
The id of the target brand
Path parameters
-
The chatroom id
-
The ambassador id
PATCH /chat/chatrooms/{chatroom}/ambassadors/{ambassador}/archive
curl \
-X PATCH https://domain.tld/api/v2/chat/chatrooms/{chatroom}/ambassadors/{ambassador}/archive \
-H "Authorization: Bearer $ACCESS_TOKEN" \
-H "Content-Type: application/json" \
-H "X-Popsell-Brand: 3" \
-d '{"archive":true}'
Request examples
# Headers
X-Popsell-Brand: 3
# Payload
{
"archive": true
}
Response examples (200)
{
"message": "Chatroom archived successfully"
}
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"
]
}
}