AssigneeFieldAssignableGroups
AssigneeFieldAssignableAgents

List assignable groups and agents based on query matched against name

List assignable groups and agents based on query matched against name

Allowed For

  • Agents
get/api/lotus/assignables/autocomplete.json

Query parameters

namestring required

Query string used to search assignable groups & agents in the AssigneeField

Response

Success response

countinteger

Number of agents + groups listed from search result.

Example response

{
  "agents": [
    {
      "group": "Tech",
      "group_id": 6574839201,
      "id": 8392017465,
      "name": "Sam Technologist",
      "photo_url": "https://z3n-example.zendesk.com/system/photos/410305192023/my_profile.png"
    }
  ],
  "count": 2,
  "groups": [
    {
      "id": 6574839201,
      "name": "Tech"
    }
  ]
}

Changes