Download PDF
Download page Agents API Methods.
Agents API Methods
The Configuration API supports Create, Read, Update, Delete, List, and Get List Info methods for Agent objects. There are separate methods to Add and Remove Services and Agent Skills to and from Agents. Read, List, and Get List Info methods for Agent Skill objects, as well as a method to Get Agent Related Objects, are also supported.
In order to use the methods listed that perform operations on LiveVox Agent objects, the user of the API must belong to either the Sysadmin, IT User, Superuser, or Manager role. If the user belongs to the Manager role he must also have the "Administer Agents" (or "Access to Agent Editor") Optional Power configured. These roles are defined in the LiveVox Configuration Manager and correspond to users who can administer Agents through the LiveVox user interfaces.
Create Agent
Description: Creates a new Agent.
Method: POST /configuration/agents/
Parameters:
None
Body:
Key | Type | Mandatory? | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
clientId | Integer (ID) | Yes | The LiveVox ID of the Client under which the Agent will be created. | ||||||||||||
loginId | String | Yes | ID used by the Agent when logging into the LiveVox ACD. Regardless of the case you use for this | ||||||||||||
firstName | String | Yes | First name of the Agent | ||||||||||||
lastName | String | Yes | Last name of the Agent | ||||||||||||
password | String | Yes | Password the agent uses when logging into the LiveVox ACD. The password must comply with the same rules as when an Agent is created or updated through the LVP GUI. Specifically, the password must be a minimum of 8 characters, containing at least 1 digit and cannot match any of the previous 3 passwords. | ||||||||||||
phone | String | Yes | Phone number of the Agent | ||||||||||||
wrapUpTime | Integer | Yes | Defines a period of after call work, following which the Agent will be placed back into “Not Ready” status by the ACD. A value of -1 corresponds to "Unlimited", and will allow Agents to remain in Wrap Up mode until they select a Term Code. | ||||||||||||
homeAgent | Boolean | Yes | Indicates whether the Agent works from home. | ||||||||||||
active | Boolean | Yes | Indicates whether the Agent is active in the LV system or not. This corresponds to the Active Agent checkbox in the LVP Edit Agent Details screen. | ||||||||||||
assignedService | Array | No | An Array of zero or more Service IDs that are assigned to the Agent.
If the | ||||||||||||
assignedAgentSkill | Array | No | An array of zero or more Agent Skill IDs that are assigned to the Agent for routing calls. For each Agent Skill assigned to the agent there must also be a Proficiency assigned, which is an integer between 1 and 5, inclusive.
|
Response Code: 201 Created
Body:
Key or Attribute | Type | Mandatory? | Description |
---|---|---|---|
id | Integer (ID) | Yes | The ID of the newly created Agent. |
Create a new Agent
#Request (JSON)
POST /configuration/agents
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"clientId": 4199,
"loginId": "BobJohnson1",
"firstName": "Bob",
"lastName": "Johnson",
"password": "A12345678",
"phone": "2023467763",
"wrapUpTime": -1,
"homeAgent": true,
"active": true,
"assignedService": [
{"id": 40789},
{"id": 17798}
],
"assignedAgentSkill": [
{
"id": 1021,
"proficiency": 3
},
{
"id": 1022,
"proficiency": 1
},
{
"id": 1023,
"proficiency": 5
}
]
}
#Response
201 Created
Content-Type: application/json
{"id": 311918}
Example of request to create an Agent, with an invalid password
#Request (JSON)
POST /configuration/agents
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"clientId": 4199,
"loginId": "BobJohnson1",
"firstName": "Bob",
"lastName": "Johnson",
"password": "",
"phone": "2023467763",
"wrapUpTime": -1,
"homeAgent": true,
"active": true,
"assignedService": [
{"id": 40789},
{"id": 17798}
],
"assignedAgentSkill": [
{
"id": 1021,
"proficiency": 3
},
{
"id": 1022,
"proficiency": 1
},
{
"id": 1023,
"proficiency": 5
}
]
}
#Response
400 Bad Request
Content-Type: application/json
{
"code": 202,
"message": "Missing required field [password]"
}
Request to create an Agent with an invalid Service type
#Request (JSON)
POST /configuration/agents
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"clientId": 111645,
"loginId": "BobJohnson11",
"firstName": "Bob",
"lastName": "Johnson",
"password": "A12345678",
"phone": "2023467763",
"wrapUpTime": -1,
"homeAgent": true,
"active": true,
"assignedService": [
{
"id": 113
}
],
"assignedAgentSkill": [
{
"id": 42304,
"proficiency": 3
}
]
}
#Response
403 Forbidden
Content-Type: application/json
{
"code": 403,
"Request Id": "1-66ebf497-fe3e993cfcde32bbd27ae102",
"Message": "Access denied"
}
Create Agent Skill
Description: Creates a new Agent Skill.
Method: POST /configuration/agents/skills[?client={clientId}]
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
client | clientId | Integer (ID) | No | The LiveVox ID of the Client under which the Agent Skill will be created. |
Body:
Key | Type | Mandatory? | Description |
---|---|---|---|
name | String | Yes | Name of the new Agent Skill. |
description | String | No | The description of the Agent Skill. |
Response Code: 201 Created
Body:
Key or Attribute | Type | Mandatory? | Description |
---|---|---|---|
id | Integer (ID) | Yes | The ID of the newly created Agent Skill. |
Create a new Agent Skill
#Request (JSON)
POST /configuration/agents/skills?=4199
Host: localhost.com
Content-Type: application/json
Accept: application/json
{"name":"Docs","description":"documentation"}
#Response
201 Created
Content-Type: application/json
{"id": 74281}
Delete Agent
Description: Deletes an Agent.
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentId | Integer (ID) | True | ID of the Agent you want to delete |
Body:
None
Response Code: 204 No Content
Body:
None
Delete an existing Agent
#Request
DELETE /configuration/agents/311907
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content
Attempt to delete an Agent that does not exist
#Request
DELETE /configuration/agents/1234
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
404 Not Found
Delete Agent Skill
Description: Deletes an Agent Skill.
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentSkillId | Integer (ID) | True | ID of the Agent Skill you want to delete. |
Body:
None
Response Code: 204 No Content
Body:
None
Delete an existing Agent Skill
#Request
DELETE /configuration/agents/skills/74280
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content
Attempt to delete an Agent Skill that does not exist
#Request
DELETE /configuration/agents/skills/74280
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
404 Not Found
Find Matching Agents
Description: Retrieves list of Agents who match either a supplied Agent Login ID, Last Name, or Phone Number. Searches are case-insensitive, and partial matches are supported for loginId and lastName.
User Roles: Sysadmin, Superuser, IT User, Manager, or Agent
Method: POST /configuration/agents/search?[client={clientId}&]count={n}&offset={n}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
client | clientId | Integer (ID) | No | Specifies the Client for which you want to retrieve the list of matching Agents. |
count | n | Integer | Yes | Specifies the number of items to return in the list. There is a hard cap of 1000 items. |
offset | n | Integer | Yes | Specifies the offset from 0, based on count, to start listing from. |
Body:
Key or Element | Type | Mandatory? | Description |
---|---|---|---|
loginId | String | Yes* | Login ID of Agent to search for |
lastName | String | Yes* | Last name of Agent(s) to search for |
phoneNumber | String | Yes* | Phone number of Agent(s) to search for |
*Only one of the three elements (loginId
, lastName
, or phoneNumber
) can be used as the search criterion for this request.
- It is the responsibility of the client application to ensure that only one type of search criterion is included in the query. The LiveVox API does not provide this validation logic on the server. If more than one type of search criterion is included in the query, the result is unpredictable.
- Partial matches are supported for both the
loginId
andlastName
parameters, and the search is case-insensitive. That is, ifjam
is provided for the lastName parameter, it could return matches such as Jamison, James, Rajam, etc.
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
next | URI | No | A URI for the next page of entries. If next is not present, or blank, then there are no pages after this one. | ||||||||||||||||||||||||||||||||||||
agent | Array | No | A container for a page of Agent entries. The page size is controlled via count and offset in the request.
|
FInd the Agent(s) who match the provided last name
#Request (JSON)
POST /configuration/agents/search?client=1005018&offset=0&count=4
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"lastName":"One"
}
#Response
200 OK
Content-Type: application/json
{
"agent": [
{
"id": 1018655,
"loginId": "AGENTONE",
"firstName": "Agent",
"lastName": "One",
"phone": "6783734060",
"active": true,
"lastLogin": 1547671690000,
"lastLoginIp": "200.76.215.11"
}
]
}
Invalid FindMatchingAgents request
#Request (JSON)
POST /configuration/agents/search?count=10&client=4199&offset=0
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"loginId":"BobJones23",
"lastName":"Jones"
}
#Response
400 Bad Request
Content-Type: application/json
{
"errorCode": 202,
"errorMessage": "Invalid input [exactly one of phone, loginId or lastName is required]"
}
Get Agent Skill List Info
Description: Gets metadata for a list of Agent Skills.
Method: GET /configuration/agents/skills/info[?client={clientId}]
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
client | clientId | Integer (ID) | No | Restricts the list to entries that are specifically associated with this particular Client. |
Body:
None
Response Code: 200 OK
Body:
Key or Attribute | Type | Mandatory? | Description |
---|---|---|---|
size | Integer | Yes | Total number of entries in the list. |
lastModified | DateTime | No | The last date & time that the list was updated. This information might not be available. This is formatted according to the definition of dateTime in the XML Schema specification. For JSON responses, it is represented as the number of milliseconds since midnight on January 1, 1970 (GMT). |
Get the metadata for a list of Agent Skills, filtered by a Client
#Request
GET /configuration/agents/skills/info?client=4199
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"size": 5,
"lastModified": 1369249675000
}
Get Agent List Info
Description: Gets metadata for a list of Agents.
Method: GET /configuration/agents/info
Parameters:
None
Body:
None
Response Code: 200 OK
Body:
Key or Attribute | Type | Mandatory? | Description |
---|---|---|---|
size | Integer | Yes | Total number of entries in the list. |
lastModified | DateTime | No | The last date & time that the list was updated. This information might not be available. This is formatted according to the definition of dateTime in the XML Schema specification. For JSON responses, it is represented as the number of milliseconds since midnight on January 1, 1970 (GMT). |
Get the metadata for a list of Agents, filtered by a Client
#Request
GET /configuration/agents/info
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"size": 153,
"lastModified": 1369249675000
}
Get Agent Related Objects
Description: Retrieves lists of Call Centers and Services associated with an Agent.
User Roles: Sysadmin, Superuser, IT User, Manager, or Agent
Method: GET /configuration/agents/{id}/related
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentId | Integer (ID) | Yes | The ID of the Agent for whom you want to retrieve the lists of related objects. |
Body:
None
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
callCenter | Array | Yes | List of Call Centers with which the Agent is associated.
| ||||||||
service | Array | Yes | List of Services with which the Agent is associated.
|
Retrieve the lists of objects associated with an Agent
#Request (JSON)
GET /configuration/agents/99057/related
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"callCenter": [
{"id": 695},
{"id": 429},
{"id": 2829},
{"id": 428}
],
"service": [
{"id": 17798},
{"id": 17885},
{"id": 40789},
{"id": 43131}
]
}
List Agent Skills
Description: Lists Agent Skills configured for a Client.
Method: GET /configuration/agents/Skills?[client={clientId}]&count={n}&offset={n}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
client | clientId | Integer (ID) | No | Specifies the Client for which you want to retrieve the list of Agent Skills |
count | n | Integer | Yes | Specifies the number of items to return in the list. There is a hard cap of 1000 items. |
offset | n | Integer | Yes | Specifies the offset from 0, based on count, to start listing from. |
Body:
None
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
next | URI | No | A URI for the next page of entries. If next is not present, or blank, then there are no pages after this one. | ||||||||||||
agentSkill | Array | No | A container for a page of Agent Skill entries. The page size is controlled via count and offset in the request.
|
Get a list of Agent Skills for a Client
#Request (JSON)
GET /configuration/agents/skills?count=5&client=4199&offset=0
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"agentSkill": [
{
"id": 1021,
"name": "SILVER"
},
{
"id": 1022,
"name": "GOLD"
},
{
"id": 1023,
"name": "PLATINUM"
},
{
"id": 8945,
"name": "SPANISH"
}
],
"next": null
}
List Agents
Description: Lists Agents configured for a Client.
User Roles: Sysadmin, Superuser, IT User, Manager, or Agent
Method: GET /configuration/agents?[client={clientId}]&count={n}&offset={n}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
client | clientId | Integer (ID) | No | Specifies the Client for which you want to retrieve the list of Agents |
count | n | Integer | Yes | Specifies the number of items to return in the list. There is a hard cap of 1000 items. |
offset | n | Integer | Yes | Specifies the offset from 0, based on count, to start listing from. |
Body:
None
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
next | URI | No | A URI for the next page of entries. If next is not present, or blank, then there are no pages after this one. | ||||||||||||||||||||||||||||||||||||
agent | Array | No | A container for a page of Agent entries. The page size is controlled via count and offset in the request.
|
Get a list of Agents for a Client
#Request (JSON)
GET /configuration/agents?count=4&client=49551&offset=2
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"agent": [
{
"id": 521091,
"loginId": "AGENT!",
"firstName": "agent",
"lastName": "bond",
"phone": "5553504512",
"active": true,
"lastLogin": 1470340861000,
"lastLoginIp": "187.237.14.230"
},
{
"id": 521092,
"loginId": "AGENT#.?",
"firstName": "agent",
"lastName": "bourne",
"phone": "5553504512",
"active": true,
"lastLogin": 1470341109000,
"lastLoginIp": "187.237.14.230"
},
{
"id": 513804,
"loginId": "AGENT-ANINDITA",
"firstName": "Anindita",
"lastName": "password123",
"phone": "6503517454",
"active": true,
"lastLogin": 1481699421000,
"lastLoginIp": "182.75.26.194"
},
{
"id": 523329,
"loginId": "AGENT-ONE",
"firstName": "AGENT",
"lastName": "ONE",
"phone": "6503517454",
"active": true,
"lastLogin": 1471943167000,
"lastLoginIp": "182.75.26.194"
}
],
"next": "configuration/agents/?client=49551&offset=6&count=4"
}
Read Agent
Description: Gets information about an Agent.
User Roles: Sysadmin, Superuser, IT User, Manager, or Agent
Method: GET /configuration/agents/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentId | Integer (ID) | Yes | The ID of the Agent you want to query |
Body:
None
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
loginId | String | Yes | ID used by the Agent when logging into the LiveVox ACD. | ||||||||||||
firstName | String | Yes | First name of the Agent. | ||||||||||||
lastName | String | Yes | Last name of the Agent. | ||||||||||||
phone | String | Yes | Phone number of the Agent. | ||||||||||||
wrapUpTime | Integer | Yes | Defines a period of after call work, following which the Agent will be placed back into “Not Ready” status by the ACD. A value of -1 will allow Agents to remain in Wrap Up mode until they select a Term Code. | ||||||||||||
homeAgent | Boolean | Yes | Indicates whether the Agent works from home. | ||||||||||||
active | Boolean | Yes | Indicates whether the Agent is active in the LV system or not. This corresponds to the Active Agent checkbox in the LVP Edit Agent Details screen. | ||||||||||||
lastLogin | Datetime | No | The date/time the agent logged in the last time. | ||||||||||||
lastLoginIp | String | No | The IP address from which the agent logged in the last time. | ||||||||||||
locked | Boolean | Yes | Indicates whether the Agent's account is locked, which can occur when the Agent exceeds the maximum number of allowable invalid login attempts. | ||||||||||||
passwordLastModified | DateTime | No | Indicates the last date/time the Agent's password was changed. Will only display if password management is enabled. | ||||||||||||
assignedService | Array | No | An array of zero or more Service IDs that are assigned to the Agent.
| ||||||||||||
assignedAgentSkill | Array | No | An array of zero or more Agent Skill IDs that are assigned to the Agent for routing calls. For each Agent Skill assigned to the agent there is also a Proficiency, which is an integer between 1 and 5, inclusive.
|
Read configuration properties of an Agent
#Request (JSON)
GET /configuration/agents/324515
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"assignedService": [
{
"id": 49551
},
{
"id": 49552
},
{
"id": 49553
},
{
"id": 49555
},
{
"id": 49561
},
{
"id": 72491
}
],
"assignedAgentSkill": [
{
"id": 12366,
"proficiency": 2
},
{
"id": 12367,
"proficiency": 1
},
{
"id": 12370,
"proficiency": 1
}
],
"loginId": "AGENT3",
"firstName": "AGENT",
"lastName": "THREE",
"phone": "5553231212",
"wrapUpTime": -1,
"homeAgent": true,
"active": true,
"locked": false,
"passwordLastModified": 1495233693000,
"lastLogin": 1495234211000,
"lastLoginIp": "189.146.225.138"
}
Read an Agent That Doesn't Exists
#Request (JSON)
GET /configuration/agents/111111
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
404 Not Found
Content-Type: application/json
{
"code": 203,
"message": "Agent not found [ID:111111]"
}
Read Agent Skill
Description: Gets information about an Agent Skill.
Method: GET /configuration/agents/skills/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentSkillId | Integer (ID) | Yes | The ID of the Agent Skill you want to query |
Body:
None
Response Code: 200 OK
Body:
Key | Type | Mandatory? | Description | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
name | String | Yes | Display name of the Agent Skill | ||||||||||||
description | String | Yes | Description of the Agent Skill | ||||||||||||
clientId | Integer (ID) | No | ID of the LiveVox Client for which this Agent Skill is configured | ||||||||||||
agent | Array | No | The Agents(s) that have this Agent Skill assigned, and the associated Proficiency that the agent has in this Agent Skill.
|
Read configuration properties of an Agent Skill
#Request (JSON)
GET /configuration/agents/skills/8945
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
200 OK
Content-Type: application/json
{
"agent": [
{
"id": 178745,
"proficiency": 1
},
{
"id": 179884,
"proficiency": 5
},
{
"id": 191007,
"proficiency": 1
},
...
{
"id": 142908,
"proficiency": 1
}
],
"name": "SPANISH",
"description": "Spanish Speaking Agents",
"clientId": 4199
}
Read an Agent Skill That Doesn't Exists
#Request (JSON)
GET /configuration/agents/skills/111111
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
404 Not Found
Content-Type: application/json
{
"code": 203,
"message": "Agent skill not found [ID:111111]"
}
Update Agent
Description: Updates the properties of an Agent.
Services and Agent Skills cannot be assigned or removed with this method. To perform those updates, you need to use the discrete methods Update Agent Add Service, Update Agent Remove Service, Update Agent Add Agent Skill, and Update Agent Remove Agent Skill.
Method: PUT /configuration/agents/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentId | Integer (ID) | Yes | The ID of the Agent you want to update |
Body:
Key or Attribute | Type | Mandatory? | Description |
---|---|---|---|
firstName | String | No | First name of the Agent |
lastName | String | No | Last name of the Agent |
password | String | No | Password the agent uses when logging into the LiveVox ACD. The updated password must comply with the same rules as when an Agent is created or updated through the LVP GUI. Specifically, the password must be a minimum of 8 characters, containing at least 1 digit and cannot match any of the previous 4 passwords. |
phone | String | No | Phone number of the Agent |
wrapUpTime | Integer | No | Defines a period of after call work, following which the Agent will be placed back into “Not Ready” status by the ACD. A value of -1 corresponds to "Unlimited", and will allow Agents to remain in Wrap Up mode until they select a Term Code. |
homeAgent | Boolean | No | Indicates whether the Agent works from home. |
active | Boolean | No | Indicates whether the Agent is active in the LiveVox system or not. This corresponds to the Active Agent checkbox in the LVP Edit Agent Details screen. |
unlock | Boolean | No | When set to true , you can unlock an Agent whose account has been locked out by the system–for example when the Agent has exceeded the maximum number of allowable invalid login attempts. |
The body of your request must contain at least one key that you want to update. keys that you don't want to update can be omitted from the request.
Response Code: 204 No Content
Body:
None
Update properties of an Agent
#Request (JSON)
PUT /configuration/agents/312433
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"phone": "2023467763",
"active": true,
}
#Response
204 No Content
Unlock an Agent whose account has been locked
#Request (JSON)
PUT /configuration/agents/312433
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"unlock": true
}
#Response
204 No Content
Example of request to update an Agent, with an invalid password
#Request (JSON)
PUT /configuration/agents/312433
Host: localhost.com
Content-Type: application/json
Accept: application/json
{
"password": "1234567"
}
#Response
400 Bad Request
Content-Type: application/json
{
"errorCode": 202,
"errorMessage": "Invalid password [Password must be at least 8 characters long]"
}
Update Agent Add Agent Skill
Description: Assigns an Agent Skill and related proficiency level to an existing Agent.
Method: PUT /configuration/agents/{agent}/skills/{id}?proficiency={proficiency}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
agent | agentId | Integer (ID) | Yes | ID of the Agent to whom you want to assign the Agent Skill |
id | agentSkillId | Integer (ID) | Yes | ID of the Agent Skill you want to assign to the Agent |
proficiency | proficiency | Integer | Yes | The Agent's proficiency level for the Agent Skill you are assigning. Valid values are 1-5, inclusive. |
Body:
None
Response Code: 204 No Content
Body:
None
Assign an Agent Skill to an existing Agent
#Request (JSON)
PUT /configuration/agents/312012/skills/1022?proficiency=4
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content
Update Agent Add Service
Description: Assigns a Service to an existing Agent.
After using this method to give an Agent access to a Service you can either create a new session id using the login
method or wait 5 min for the permissions of the current session id to update.
Method: PUT /configuration/agents/{agent}/services/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
agent | agentId | Integer (ID) | Yes | ID of the Agent to whom you want to assign the Service |
id | serviceId | Integer (ID) | Yes | ID of the Service you want to assign to the Agent You can only assign "ACD Services" to Agents. These are Services where the ACD Feature Code, or
If the |
Body:
None
Response Code: 204 No Content
Body:
None
Assign a Service to an existing Agent
#Request (JSON)
PUT /configuration/agents/312012/services/17885
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content
Try to assign an invalid Service type to an Agent
#Request (JSON)
PUT /configuration/agents/312012/services/38184
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
{
"errorCode": 202,
"errorMessage": "Cannot assign service [incorrect service type]"
}
Update Agent Skill
Description: Update an Agent Skill.
Method: PUT configuration/agents/skills/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
id | agentSkillId | Integer (ID) | Yes | The ID of the Agent Skill to be updated. |
Body:
Key | Type | Mandatory? | Description |
---|---|---|---|
name | String | No | New name of the Agent Skill. |
description | String | No | New description of the Agent Skill. |
Response Code: 204 No Content
Body:
None
Update an Agent Skill
#Request (JSON)
PUT /configuration/agents/skills/74281
Host: localhost.com
Content-Type: application/json
Accept: application/json
{"name":"Docs","description":"documentation"}
#Response
204 No Content
Update Agent Remove Agent Skill
Description: Removes an Agent Skill assignment from an existing Agent.
Method: DELETE /configuration/agents/{agent}/skills/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
agent | agentId | Integer (ID) | Yes | ID of the Agent from whom you want to remove the Agent Skill assignment |
id | agentSkillId | Integer (ID) | Yes | ID of the Agent Skill you want to unassign from the Agent |
Body:
None
Response Code: 204 No Content
Body:
None
Remove an Agent Skill assignment from an existing Agent
#Request (JSON)
DELETE /configuration/agents/312012/skills/1022
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content
Update Agent Remove Service
Description: Removes a Service assignment from an existing Agent.
Method: DELETE /configuration/agents/{agent}/services/{id}
Parameters:
Path/Query Parameter Name | Variable Name | Type | Mandatory? | Description |
---|---|---|---|---|
agent | agentId | Integer (ID) | Yes | ID of the Agent from whom you want to remove the Service assignment |
id | serviceId | Integer (ID) | Yes | ID of the Service you want to unassign from the Agent |
Body:
None
Response Code: 204 No Content
Body:
None
Remove a Service assignment from an existing Agent
#Request (JSON)
DELETE /configuration/agents/312012/services/17885
Host: localhost.com
Content-Type: application/json
Accept: application/json
#Response
204 No Content