Update Speech Script
Developing
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"speechScript" : "Hello world !"
}
Request Code Samples
curl --location --request PUT 'https://service-dash.dlabssaas.io/rest/web/secured/meeting/room/1c6b5188-2fb2-11ef-bee7-0a71e33928b1/speech-script' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"speechScript" : "Hello world !"
}'
Responses
application/json {
"status": "success",
"data": {
"speechScript": "Hello world !"
},
"info": {
"id": "SUCCESS_SAVE_DATA",
"message": "Speech Script successfully saved !",
"messageEn": null,
"messageId": null,
"field": null,
"redirect": null
}
}
Modified at 2024-07-15 06:28:38