Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

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
}

  • No labels