Skip to main content
Adds authentication to an HTTP API connection by appending one or more query parameters to the address of every request. Some APIs expect credentials in the URL itself, for example ?api_key=... or ?token=..., rather than in a header. Use this to attach those parameters automatically so you do not have to add them to each request by hand.

Fields

Sample data

This feature adds authentication to a live HTTP connection rather than transforming data, so there is no before/after to show. A typical configuration that attaches an API key looks like this:
FieldValue
Paramsapi_key = your-api-key
With this setting, a request to https://api.example.com/orders is sent as https://api.example.com/orders?api_key=your-api-key.