Agents
List
Get a paginated list of agents
			GET https://api.deskero.com/agent/list
		
		
		Headers
| Header | Value | 
|---|---|
| Authorization | Bearer {{bearer}} | 
| Accept | application/json | 
| clientId | {{clientId}} | 
URL parameters
| Field name | Value | Required | Default | 
|---|---|---|---|
| page | int value for page to show | False | 1 | 
Example request
$ curl https://api.deskero.com/agent/list \ 
  -v \
  -H "Accept: application/json" \
  -H "Authorization: Bearer 58cfg61g-1585-5c72-g35f-7fe76893ed2f" \
  -H "clientId: 51f01687e4b094c81d7b8bcdellef"
Example response
{
  "agent": {
    "totalRecords": 50,
    "recordsPerPage": 25,
    "previousQuery": null,
    "nextQuery": "https://api.deskero.com/agent/list?page=2",
    "records": [
      See agent detail
    ]
  }
}