Dercni
Dercni

Reputation: 1224

Call Rest API from Webhook

Our ticket system has a REST api and I wish to create a new ticket when a chat is completed in RocketChat. RocketChat can call webhooks.

How can I get the two to talk together? Is Zapier the only way?

Ideally I'd like something on the local LAN, as opposed to an external service like Zapier.

Is there an OpenSource solution that can receive a webhook and then call call the REST api?

Upvotes: -1

Views: 72

Answers (1)

Michal
Michal

Reputation: 405

There are at least 2 options:

  1. Coding based -> Create simple node.js app that will consume RocketChat webook and call your ticket system API.
  2. No-code -> Use n8n automation software which works just like zapier but it can be launched locally. Install and configure it to use webooks or just RocketChat integration endpoint along with HTTP request to your ticket system.

Upvotes: 1

Related Questions