Modules@robinpath/freshdesk

@robinpath/freshdesk

0.1.0Public

Freshdesk module for RobinPath.

@robinpath/freshdesk

Freshdesk module for RobinPath.

Category Functions Auth License

Why use this module?

The freshdesk module lets you:

  • listTickets
  • getTicket
  • createTicket
  • updateTicket
  • deleteTicket

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/freshdesk

Quick Start

1. Set up credentials

freshdesk.setCredentials "your-credentials"

2. listTickets

freshdesk.listTickets

Available Functions

FunctionDescription
freshdesk.setCredentialsConfigure freshdesk credentials.
freshdesk.listTicketslistTickets
freshdesk.getTicketgetTicket
freshdesk.createTicketcreateTicket
freshdesk.updateTicketupdateTicket
freshdesk.deleteTicketdeleteTicket
freshdesk.listTicketConversationslistTicketConversations
freshdesk.replyToTicketreplyToTicket
freshdesk.addNoteToTicketaddNoteToTicket
freshdesk.listContactslistContacts
freshdesk.getContactgetContact
freshdesk.createContactcreateContact
freshdesk.updateContactupdateContact
freshdesk.deleteContactdeleteContact
freshdesk.listAgentslistAgents
freshdesk.getAgentgetAgent
freshdesk.listGroupslistGroups
freshdesk.listCompanieslistCompanies
freshdesk.createCompanycreateCompany
freshdesk.searchTicketssearchTickets
freshdesk.filterTicketsfilterTickets

Examples

listTickets

freshdesk.listTickets

getTicket

freshdesk.getTicket

createTicket

freshdesk.createTicket

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/freshdesk";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  freshdesk.setCredentials "your-credentials"
  freshdesk.listTickets
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.0latestyesterday
Install
$ robinpath install @robinpath/freshdesk
Version0.1.0
LicenseMIT
Unpacked Size4.8 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

sales