Skip to content

Webhook Call Webhook

Aiden Kaskela edited this page Aug 29, 2019 · 1 revision

This activity allows you to call out to a REST API from your workflow either synchronously or asynchronously and supply the required Headers and Body depending on the type of call you are making (e.g. GET, POST, PUT, PATCH)

Examples:

  • Retrieve the manager’s email from Office 365 for a user who creates or is assigned a record and set the manager’s email on the record.

Input Parameters

Parameter Name Type Description Default
RequestHeaders Text A semicolon delimited string of name / value pairs. Example: Content-Type:application/json;Authentication:authtoken {null}
Request Url Text The URL of the API you are calling. {null}
Request Body Text The text representation of the body of the request. {null}
Synchronous Mode Option Set Determined whether to call the API synchronously or asynchronously. Synchronous
Request Mode Option Set The method for calling the API endpoint. E.g. POST, GET, PUT, PATCH etc. GET

Output Parameters

Parameter Name Type Description
Response Headers Text A semicolon delimited list of headers returned from the API call.
Response Body Text The body of the response from the API call.

Clone this wiki locally