Skip to main content

HTTP

Call any external REST API from your automations — with full control over headers, authentication, request body, and query parameters. Use it for APIs that don’t have a dedicated Collabase connector.

Authentication

Auth type: None (configure per-action) The HTTP connector does not use stored credentials. Configure authentication inline within each action.

Actions

HTTP Request

The single action on this connector handles all HTTP methods.
FieldDescription
URLThe target URL. Supports {{variables}}.
MethodGET, POST, PUT, PATCH, or DELETE
HeadersKey-value pairs. Use for Authorization, Content-Type, etc.
BodyJSON string or raw body for POST/PUT/PATCH requests
Query ParamsKey-value pairs appended to the URL
Outputs:
FieldDescription
statusHTTP status code
bodyParsed JSON response body (or raw string if not JSON)
headersResponse headers
oktrue if status is 200–299

Example — call a private REST API

[HTTP Request]
    url: https://api.yourapp.com/v1/users
    method: GET
    headers:
        Authorization: Bearer {{secrets.apiKey}}
        Accept: application/json
To use secrets in HTTP headers without hardcoding them, store the value in an automation variable using a Set Variable node, then reference it as {{varName}} in the header value.