Distribute a release
distribute_releaseSubmit a validated release for distribution to stores and outlets. Use an idempotency key to safely retry calls without duplicate submissions.
Instructions
Submit a release for distribution to the stores/outlets — this is the FINAL, consequential action that sends the release out; validate_release should pass first. The server enforces your account’s weekly submission limit and returns a structured error if it is exceeded. Pass idempotency_key and reuse the SAME value if you retry a call whose outcome you did not observe — the server deduplicates by it for 24h; without a key each call is a new submission.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| release_id | Yes | The release id. | |
| idempotency_key | No | Optional idempotency key. The server deduplicates by this key for 24h — pass the SAME key when retrying a call whose outcome you did not observe. Without it, each call is a new operation. |