update_requester
Modify requester details in Freshservice, including name, contact info, job title, department, and custom fields. Ideal for maintaining accurate and up-to-date user profiles.
Instructions
Update a requester in Freshservice.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | No | ||
background_information | No | ||
can_see_all_tickets_from_associated_departments | No | ||
custom_fields | No | ||
department_ids | No | ||
first_name | No | ||
job_title | No | ||
language | No | ||
last_name | No | ||
location_id | No | ||
mobile_phone_number | No | ||
primary_email | No | ||
reporting_manager_id | No | ||
requester_id | Yes | ||
secondary_emails | No | ||
time_format | No | ||
time_zone | No | ||
work_phone_number | No |
Input Schema (JSON Schema)
{
"properties": {
"address": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Address"
},
"background_information": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Background Information"
},
"can_see_all_tickets_from_associated_departments": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": false,
"title": "Can See All Tickets From Associated Departments"
},
"custom_fields": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Custom Fields"
},
"department_ids": {
"anyOf": [
{
"items": {
"type": "integer"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Department Ids"
},
"first_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "First Name"
},
"job_title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Job Title"
},
"language": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Language"
},
"last_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Last Name"
},
"location_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Location Id"
},
"mobile_phone_number": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Mobile Phone Number"
},
"primary_email": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Primary Email"
},
"reporting_manager_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Reporting Manager Id"
},
"requester_id": {
"title": "Requester Id",
"type": "integer"
},
"secondary_emails": {
"anyOf": [
{
"items": {
"type": "string"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Secondary Emails"
},
"time_format": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Format"
},
"time_zone": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Time Zone"
},
"work_phone_number": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Work Phone Number"
}
},
"required": [
"requester_id"
],
"title": "update_requesterArguments",
"type": "object"
}