Custom API
Custom API actions enable you to connect to an external system outside of Plumber. This is helpful if your workflow involves interactions with an external system.
Custom API actions are designed for advanced users
The implementation might require some changes on the system that is receiving raw data from Plumber, speak to the system owner or pass this guide to the relevant stakeholders to facilitate the process.
FAQ
Can Plumber connect to systems in the intranet space?
Yes, Plumber can connect to systems in the intranet space, but only if certain conditions are met. The intranet systems must whitelist the Plumber IP addresses listed in the section above. Without this whitelisting, Plumber will not be able to integrate with or access any systems within the intranet space.
Can I use Custom API to send attachments?
No, the Custom API action only supports sending a JSON body and does not support file attachments.
What can I include in the 'Data' field?
The ‘Data’ field only accepts valid JSON data. Ensure your input follows proper JSON formatting, including key-value pairs enclosed in curly braces { }. Find out more about proper JSON formatting here.
Example:
How to address invalid JSON data errors:
Ensure that you use "double quotes" instead of 'single quotes'
Ensure that you are not using curly or fancy quotes: “ ”
Ensure that there are not trailing commas
How to set up custom api action?
Select "Custom API" under "Choose an app"
Select "Make a HTTP request" under "Choose an event"
Click "Continue".
Select "Add new connection"
Under "Label", give a name you like for the connection. This is just for your own identification purpose.
Under "Headers", enter the identifying parameters for the system you're interacting with.
Select the relevant methods (GET, DELETE, PATCH, POST, PUT)
Fill in the remaining fields according to how your system is configured
Click "Continue" when you're done
Upon successful request, you'll be able to view the data provided by the external system
Last updated
Was this helpful?