Update a predefined message by id (manager)
Path parameters
-
The predefined message id
PATCH /manager/predefined-messages/{id}
curl \
-X PATCH https://domain.tld/api/v2/manager/predefined-messages/{id} \
-H "Content-Type: application/json" \
-d '{"contents":[{"lang":"en_GB","content":"Hello"}],"position":1,"active":true}'
Request examples
{
"contents": [
{
"lang": "en_GB",
"content": "Hello"
}
],
"position": 1,
"active": true
}
Response examples (200)
{
"id_predefined_message": 1,
"contents": [
{
"id_i18n_content": 42,
"lang": "en_GB",
"content": "Hello"
}
],
"position": 1,
"active": true
}
Response examples (401)
{
"message": "Unauthorized."
}