dedupe
dedupe deduplicates semantically identical actions in a 24-hour window.
- Scope: account + key
- Ignores already
failedactions - If matched, API returns existing action with
deduplicated: true
Typical use cases
- Prevent duplicate invoice processing
- Avoid repeated outbound notifications
- Suppress duplicate user-triggered operations
Idempotency-Key header
Idempotency-Key deduplicates repeated create requests in a 24-hour window.
- Scope: account + header value
- Works even if body is retried by the client unchanged
- Returns existing action with
deduplicated: true
Difference
- dedupe
- Idempotency-Key
Business-level dedupe: “these actions mean the same thing”.