Lodol Docs

Zendesk

API actions for the Zendesk integration.

Zendesk

Manage Zendesk tickets from Lodol with create, update, search, and comment actions.


Add comment to ticket

Adds a public or private comment to an existing Zendesk ticket.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoThe Zendesk ticket ID to add a comment to, for example 123456789.
commentstringNoThe comment text to add to the ticket.
publicbooleanNoSet to true to post the comment publicly, or false to keep it internal.

Response

{
  "status": "mock_value"
}

Create a Zendesk ticket

Creates a Zendesk ticket with subject, description, and optional requester email and priority.

Parameters

ParameterTypeRequiredDescription
subjectstringNoTicket subject summarizing the issue.
descriptionstringNoDetailed description of the request or incident.
requester_emailstringNoEmail address of the requester (optional).
prioritystringNoOptional priority (e.g., low, normal, high, urgent).

Response

{
  "status": "mock_value"
}

Get ticket details

Retrieves full details for a single Zendesk ticket.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoThe Zendesk ticket ID to look up, for example 123456789.

Response

{
  "status": "mock_value",
  "ticket": "mock_value"
}

List recent tickets

Lists recent Zendesk tickets, optionally filtered by status.

Parameters

ParameterTypeRequiredDescription
per_pagenumberNoNumber of tickets to return (max 100).
statusstringNoFilter by status: open, pending, solved, or closed.

Response

{
  "status": "mock_value"
}

Search tickets

Searches your Zendesk tickets using search terms you provide.

Parameters

ParameterTypeRequiredDescription
querystringNoWhat to search for. You can use Zendesk search syntax, such as type:ticket status:open.
pagenumberNoWhich page of results to return.
per_pagenumberNoHow many results to return per page.

Response

{
  "status": "mock_value"
}

Update ticket status

Updates the status of an existing Zendesk ticket and optionally adds a comment.

Parameters

ParameterTypeRequiredDescription
ticket_idstringNoThe Zendesk ticket ID to update, for example 123456789.
statusstringNoThe new status: open, pending, solved, or closed.
commentstringNoOptional public comment to add while updating status.

Response

{
  "status": "mock_value"
}

On this page