get_agents
Retrieve all agents in Freshdesk with pagination support to manage and organize support team details efficiently.
Instructions
Get all agents in Freshdesk with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | ||
per_page | No |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 1,
"title": "Page"
},
"per_page": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": 30,
"title": "Per Page"
}
},
"title": "get_agentsArguments",
"type": "object"
}