create_agent
Add new agents to Freshservice by defining essential details like first name, email, and job title. Simplify agent onboarding and management.
Instructions
Create a new agent in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | |||
first_name | Yes | ||
job_title | No | ||
last_name | No | ||
mobile_phone_number | No | ||
occasional | No | ||
work_phone_number | No |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"default": null,
"title": "Email",
"type": "string"
},
"first_name": {
"title": "First Name",
"type": "string"
},
"job_title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Job Title"
},
"last_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Last Name"
},
"mobile_phone_number": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Mobile Phone Number"
},
"occasional": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"title": "Occasional"
},
"work_phone_number": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Work Phone Number"
}
},
"required": [
"first_name"
],
"title": "create_agentArguments",
"type": "object"
}