Edit Organization URL : v3/organisation/update/api/{id} HTTP Method : POST Response Format: JSON Parameters: Parameter Data Type Optional/Required Description organisation_name String Configurable It the name of the organization and it configurable from back end form settings phone String Configurable It the phone no of the organization and it configurable from back end form settings organisation_domain_name[] Array […]
Articles Tagged: v3
Create Ticket V3
Agent Panel Description: To create a ticket in Faveo from agent panel. HTTP Method : POST URL : v3/newticket Content-Type: multipart/form-data NOTE: most of the things mentioned here are configurable by form builder on the admin panel. Those fields are marked as Configurable. Current status of configurable fields can be found at https://developers.faveohelpdesk.com/get-form-data Parameters […]
How to pass OAuth2 token in API version 3
Faveo API version 3 uses OAuth token to grant access to the API endpoints which require user authentication. If you call an API that requires authentication without passing the OAuth token it will return the below response with HTTP status code 422. { “result”: { “fails”: “Unauthorized! Please login again” } } Note: Faveo API […]
Whatsapp Plugin
Adds the Whatsapp Business Account URL : v3/api/whatsapp/create Method : POST Query Parameters : Parameter Type Optional/Required Description name string Required Name of the Account sid string Required SID of the Twilio Account token string Required Auth Token of your Twilio Account business_phone string Required Whatsapp Business Phone Number (Format: +91900120034) Response : { “success”:true, […]
Task Plugin API
Creates the Project URL : v3/tasks/project/create Method : POST Query Parameters : Parameter Type Optional/Required Description name string Required Name of the Project Response : { “success”:true, “message”:”Project Created Successfully.” } Fetches all the Projects Without Pagination. URL : tasks/project/view Method : GET Response : { “success”:true,”data”:[{“id”:1,”name”:”Sample”,”created_at”:”2020-01-02 09:53:03″,”updated_at”:”2020-01-02 09:53:03″}] } Deletes the Project. URL : […]
Attach Asset to Problem
Description: URL: service-desk/api/problem-attach-asset/{problemId} Method: POST Description : Route to attach asset to problem based on problemId and assetId Parameters: Parameter Type Optional/Required Description problem id integer Required Problem id of the problem to attach change asset ids integer Required Asset ids of the assets to be attached to problem is passed through request Success Response : { […]
Attach Ticket to Problem
URL:service-desk/api/problem-attach-ticket/{problemId} Method: POST Description : Route to attach ticket to problem based on problemId and ticketIds Parameters: Parameter Type Optional/Required Description problem id integer Required Problem id of the problem to attach ticket ticket id integer Required Ticket ids of the tickets to be attached to problem is passed through request { “success”:true, “Message”:“Tickets Attached Successfully” }
Update Problem Status to Close
URL: v3/service-desk/api/problem-status-close/{problemId} Method: POST Description : Route to attach change to problem based on problemId and changeId Parameters: Parameter Type Optional/Required Description problem id integer Required Problem id of the problem to update status to close Success Response : { “success”:true, “Message”:“Problem Saved Successfully” }
Detach Change from Problem
URL: service-desk/api/problem-detach-change/{problemId}/{changeID} Method: DELETE Description : Route to detach change from problem based on problemId and changeId Parameters: Parameter Type Optional/Required Description problem id integer Required Problem id of the problem to detach change change id integer Required Change id of the change to be detached from problem Success Response : { “success”:true, “Message”:“Change Detached Successfully” […]
Attach Change to Problem
URL: service-desk/api/problem-attach-change/{problemId}/{changeID} Method: POST Description : Route to attach change to problem based on problemId and changeId Parameters: Parameter Type Optional/Required Description problem id integer Required Problem id of the problem to attach change change id integer Required Change id of the change to be attached to problem Success Response : { “success”:true, “Message”:“Change Attached Successfully” }