POST the result payload to your HTTPS endpoint on every job completion.
Prerequisites
- Pro Max workspace.
- An HTTPS endpoint you control that accepts
POST+ JSON. - One of three auth schemes: Bearer, HMAC-SHA256, or Basic.
Steps
1
Create the agent
Or use an existing one — sinks attach to any agent.
2
Add the outbound sink
Data sources → Add → HTTPS webhook (outbound).
name: “Internal BI ingest”url:https://internal.acme.com/mapping-resultsauthScheme:HmacSha256secret: paste a 32-byte secret (stored in vault).format:JSON
3
Test the endpoint
Click Test — we send a synthetic payload signed with your secret. You should see the request hit your endpoint with
X-MT-Signature: sha256=<hex> header.4
Enable auto-push in rules
5
Activate the agent
Next finished mapping job triggers a push.
Payload shape
HMAC verification (Node)
Retry semantics
- Initial attempt +
retry_failed_pushretries (default 2). - Exponential backoff: 5s, 30s, 5min.
- 4xx responses are not retried (you returned them deliberately).
- 5xx and timeouts retry.
- All attempts land in
agent_data_source_syncwith per-attempt status.
Equivalent API call
Related
- Agents overview — broader context.
- Data sources and sinks — auth scheme details.
- Audit and undo — why push is not undoable.