...
http://<hostname>:<port>/ctreplay/default/saveProfile
Request Body to update an existent profile (“id” field is present):
Code Block |
---|
|
{
"document":{
"id": "5eea3d2919eb88cfb639fecb",
"name":"default",
"description":"profilo default",
"securityRules":{
"onlyPartner":true,
"onlyCallcenter":true,
"onlyMacroactivity":false,
"onlyTags": "{\"tags.ECID\" : \"saasher|11|41479|57\"}"
},
"allowedActions":{
"canPlay":true,
"canDownload":true,
"canEdit":true,
"canDelete":true,
"canListenOriginalAudio":true
},
"hideTags":[
"agent",
"callId"
],
"searchableTags":[
"ECID",
"AGENT"
],
"editableTags": [
{
"name": "validazione",
"type": "select",
"options": ["YES","NO"]
},
{
"name": "note",
"type": "text"
}
]
}
} |
...
Code Block |
---|
|
{
"result": true,
"id": "",
"error": null
} |
Request Body to save a new profile (“id” field is not present):
Code Block |
---|
|
{
"document":{
"description":"profilo visibilità solo partner",
"name":"onlyPartner",
"hideTags":[
],
"allowedActions":{
"canPlay":true,
"canDownload":true,
"canEdit":true
},
"securityRules":{
"onlyPartner":true,
"onlyCallcenter":false,
"onlyMacroactivity":false,
"onlyTags":"{\"tags.ECID\" : \"saasher|11|41479|57\"}"
},
"editableTags":[
{
"options":[
"YES",
"NO"
],
"name":"validazione",
"type":"select"
},
{
"options":[
],
"name":"note",
"type":"text"
}
]
}
} |