listAgents
This method returns a list of Agent resources.
URL
/agents
Method
GET
Parameters
| Parameter Name | Type | Value | Description | 
|---|---|---|---|
| filter | query | string | Use filter to narrow the elements shown | 
| page | query | number | Pagination index | 
| itemsPerPage | query | number | Number of elements per request | 
Note: The filter parameter uses JsonPath format
Request body
Do not supply a request body with this method.
Response
If successful this method returns a list of Agent resources.
Sample Call
GET /api/{apiversion}/agents
{
}
HTTP/1.1 200 OK
{
  "status": "200",
  "message": "Successful request",
  "meta": {
    "currentPage": 1,
    "totalPages": 1,
    "itemsPerPage": 30,
    "totalItems": 1
  },
  "data": [{
    "apiVersion": "v1beta1",
    "kind": "Agent",
    "metadata": {
    	"name": "John Doe",
      "ref": "ag3f77f6"
    },
    "spec": {
    	"credentials": {
    		"username": "1001",
    		"secret": "1234"
    	},
    	"domains": [
    		"sip.local"
    	]
    }
  }]
}