/api/v2/bpm/texts
Метод обновляет текста по textId.
С помощью этого метода обновляются не только текста переводов, но и алиасы - псевдонимы
- application/json
Request Body
texts object[] required
Массив алиасов с переводами на все языки
Array [textId int64ID алиаса
alias stringАлиас
translations object[]
Массив переводов для алиаса на разные языки
Array [langName stringЯзык перевода
text stringТекст перевода
]]
Responses
- 200
- 400
- 401
OK
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 1,
"message": "Data was updated successfully",
"response": {},
"preparingsTime": 0.175
}
Bad Request
- application/json
- Schema
- Example (from schema)
- example-0
- example-1
Schema
- object
{}
400
{
"status": 0,
"message": "Attribute 'texts' is required",
"response": {},
"preparingsTime": 0.044
}
400_2
{
"status": 0,
"message": "Values of textId param are incorrect",
"response": {},
"preparingsTime": 0.039
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
- object
{}
{
"status": 0,
"message": "Authentication credentials were not provided.",
"response": {
"detail": "Authentication credentials were not provided."
},
"preparingsTime": 0.003
}
Loading...