- Authentication — verifies the caller hitting your getrequest endpoint URL, before getrequest does anything else with the request.
- Destination Authentication — attaches a credential to the outbound call getrequest makes to your destination (Sync API and Async API only — Static API has no destination to call).
Authentication (verifying the caller)
Set this to require a credential on every request before getrequest will process it — useful when your endpoint URL might leak (a Slack message, a shared log link, a support ticket) and you don’t want it usable by anyone who finds it. Options, selected from a Type dropdown when editing the endpoint:
A request that fails this check gets
401 Unauthorized and never reaches your destination — but it is still logged (tagged so you can tell a real auth failure apart from a misconfigured client), so you can audit who’s probing your endpoint.
Destination Authentication (authenticating to your backend)
Set this when your destination itself requires a credential — an internal API that expects a bearer token, a partner API behind Basic Auth, or a receiver that verifies an HMAC signature on the way in. Same four types, applied to the outbound call instead:
Whichever type you configure, getrequest strips any
Authorization header the original caller sent before attaching yours — the configured destination credential always wins and is never overridable by the caller.
Destination Authentication applies identically whether the endpoint is Sync API or Async API, including every automatic retry attempt — see Sync vs. Async endpoints. If you rotate a destination credential, the next retry attempt (or the next live request) picks up the new value; nothing is cached from an earlier attempt.
Set up right, the two slots work together: Authentication decides who’s allowed to hand you a request at all, Destination Authentication proves to your own backend that the request genuinely came through getrequest — and neither one requires a line of code on your side.