Setup
Authenticate requests
FlowRelay authenticates incoming events before it records the receipt and hands a trigger to Shopify Flow.
Steps
Complete these in order.
-
Check sender signing support
Ask the sender owner whether their system can sign requests with HMAC-SHA256.
-
Prefer HMAC-SHA256
Choose HMAC-SHA256 when signing is available, then store the generated signing secret only in the sender system.
-
Use static auth when necessary
Choose static-header auth only when the sender cannot sign requests, then store the generated header name and value privately.
-
Send a synthetic test
Send a test event with synthetic data and use the receipt to confirm authentication passed before connecting real production events.
-
Diagnose authentication failures
If authentication fails, share the FlowRelay support code or diagnostics share. Do not paste secrets, full authentication headers, signatures, or raw event bodies into support.
Choose the authentication mode #
Prefer signed requests when the sender supports them. Use static-header authentication only when the sender cannot sign safely.
| Mode | Use when | Operator note |
|---|---|---|
| HMAC-SHA256 | The sender can sign the request body. | Preferred for production senders because FlowRelay can verify the sender knows the shared secret. |
| Static-header auth | The sender cannot create HMAC signatures. | Keep the generated header value private and rotate it if it is exposed or the sender relationship changes. |
Request wire contract #
Send JSON with POST to the endpoint URL and put authentication in that endpoint's configured header. FlowRelay compares a static value exactly or verifies a lowercase hexadecimal HMAC-SHA256 digest over the exact raw request bytes. Parsing, reformatting, re-encoding, or otherwise changing the body after signing invalidates the HMAC signature.
body_bytes = utf8_encode(exact_json_body)
signature = lowercase_hex(hmac_sha256(FLOWRELAY_SIGNING_SECRET, body_bytes))
POST FLOWRELAY_ENDPOINT_URL
Content-Type: application/json
FLOWRELAY_CONFIGURED_AUTH_HEADER: signature
Body: body_bytes
curl -X POST "$FLOWRELAY_ENDPOINT_URL" \
-H "Content-Type: application/json" \
-H "$FLOWRELAY_CONFIGURED_AUTH_HEADER: $FLOWRELAY_STATIC_SECRET" \
--data-binary '{"event_type":"synthetic.test","external_event_id":"synthetic-001"}'
| Requirement | HMAC-SHA256 | Static header |
|---|---|---|
| Method and media type | POST with Content-Type: application/json | POST with Content-Type: application/json |
| Configured auth header | Put the lowercase hexadecimal SHA-256 digest in the exact header name shown for this endpoint. | Put the exact generated secret value in the exact header name shown for this endpoint. |
| Comparison input | HMAC the exact raw body bytes that are sent on the wire. | Compare the configured header value exactly. |
Success check #
A test receipt shows that authentication passed before you enable production traffic. If authentication fails, fix the sender configuration and send a new test event with synthetic data.
Safe troubleshooting #
FLR_AUTH_HEADER_MISSING means the configured header name was absent. FLR_AUTH_FAILED means the static value or exact-body HMAC did not verify. Correct the sender configuration and send a fresh event; do not replay an unauthenticated request. Share only the support code or a diagnostics share when someone needs help. Do not share the secret, full authentication header value, signature, raw event body, Shopify token, session data, or copied merchant incident.
Delivered means FlowRelay handed the trigger to Shopify Flow. It does not mean downstream Shopify Flow branches, app calls, fulfillment changes, emails, or later systems completed.
FlowRelay