Skip to main content

Make

Make (formerly Integromat) is a visual workflow automation platform. Use its HTTP module to call Routerly from any scenario.


Configure

Make does not have a native Routerly module, but its HTTP → Make a request action handles it cleanly.

  1. Add a HTTP → Make a request module to your scenario.
  2. Configure it:
FieldValue
URLhttp://localhost:3000/v1/chat/completions
MethodPOST
HeadersAuthorization: Bearer sk-rt-YOUR_PROJECT_TOKEN / Content-Type: application/json
Body typeRaw
Content typeJSON (application/json)
Request contentSee below
{
"model": "gpt-5-mini",
"messages": [
{ "role": "user", "content": "{{1.text}}" }
]
}
  1. Map {{1.text}} (or any other variable) to the prompt you want to send.
  2. Parse the response: the reply is at choices[0].message.content.
note

Replace localhost:3000 with your production Routerly URL if Make is connecting over the internet. Make sure the endpoint is accessible from Make's cloud infrastructure.


Usage

Run the scenario. The response body contains a standard OpenAI ChatCompletion object. Use the Make JSON → Parse JSON module to extract the reply text.