Lodol Docs

Zoho Desk

API actions for the Zoho Desk integration.

Zoho Desk

Create, update, search, and comment on support tickets in Zoho Desk.


Add comment to Zoho Desk ticket

Adds a public or private comment to a Zoho Desk ticket.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoZoho Desk ticket ID to update.
contentstringNoComment content to add to the ticket.
is_publicbooleanNoSet to true to make the comment public, or false to keep it internal.

Response

{
  "comment_id": "67890",
  "ticket_id": "12345"
}

Create Zoho Desk ticket

Creates a Zoho Desk ticket with subject, department, optional contact email, description, priority, and status.

Parameters

ParameterTypeRequiredDescription
subjectstringNoTicket subject summarizing the request.
department_idstringNoThe Zoho Desk department ID for the ticket.
contact_emailstringNoEmail address of the person requesting help.
descriptionstringNoDetailed description of the issue.
prioritystringNoOptional priority such as Low, High, or Urgent.
statusstringNoOptional initial status for the ticket.

Response

{
  "created_time": "2024-01-01T00:00:00Z",
  "status": "Open",
  "ticket_id": "12345"
}

Get Zoho Desk ticket

Retrieves details for a specific Zoho Desk ticket.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoZoho Desk ticket ID to look up.

Response

{
  "departmentId": "dept1",
  "id": "12345",
  "status": "Open",
  "subject": "Test ticket"
}

List Zoho Desk tickets

Lists Zoho Desk tickets with optional department and status filters.

Parameters

ParameterTypeRequiredDescription
limitnumberNoMaximum number of tickets to return.
department_idstringNoOptional department ID to filter tickets.
statusstringNoOptional status filter for tickets.

Response

{
  "count": 1,
  "data": [
    {
      "id": "12345",
      "subject": "Test"
    }
  ]
}

Search Zoho Desk tickets

Finds Zoho Desk tickets that match what you search for.

Parameters

ParameterTypeRequiredDescription
search_strstringNoWhat to search for in your tickets.
limitnumberNoMaximum number of tickets to return.

Response

{
  "count": 1,
  "data": [
    {
      "id": "12345",
      "subject": "Test"
    }
  ]
}

Update Zoho Desk ticket status

Updates the status of an existing Zoho Desk ticket.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoZoho Desk ticket ID to update.
statusstringNoNew status for the ticket.

Response

{
  "modified_time": "2024-01-01T00:00:00Z",
  "status": "Closed",
  "ticket_id": "12345"
}

On this page