Adds new tags to QMS.
HTTP POST /ctreplay/:domain?/addTagsToQMS
Path variables:
Name | Mandatory | Type | Description |
---|---|---|---|
domain | NO | STRING | Unique domain identifier |
Request body:
Type: JSON
Name | Mandatory | Type | Description |
---|---|---|---|
tagList | YES | ARRAY | Tag names to be added to QMS |
Response:
Type: JSON
Name | Type | Description |
---|---|---|
result | BOOLEAN | If true, the service response was performed correctly |
error | NULL / STRING | Contains the error description if an error has occurred in the request |
Example:
Request:
http://<hostname>:<port>/ctreplay/default/addTagsToQMS
Request Body:
{ "tagList": [ "auto", "extension", "agent", "remote", "uuid", "callType", "duration", "recorderAddr", "callcenter", "ecid", "callId", "startTs", "macroactivity", "partner", "isClosed" ] }
Response:
{ "result": true, "error": null }