Skip to main content
Version: 1.x.x

listAgents

This method returns a list of Agent resources.

URL

/agents

Method

GET

Parameters

Parameter NameTypeValueDescription
filterquerystringUse filter to narrow the elements shown
pagequerynumberPagination index
itemsPerPagequerynumberNumber 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"
]
}
}]
}