Overview
This API surface is for integration partners building on top of the Rokt network. Rokt ecommerce partners integrating placements on their own checkout should use the Rokt Ecommerce developer docs instead.
The Rokt Partnerships API is a REST API for partner platforms that onboard and manage merchants on the Rokt network. Use it to register merchants, configure marketplace controls, manage placement status, and start payout onboarding without using the Rokt UI.
This API surface is in active development. Payloads, endpoints, and behavior may shift. Rokt will notify you of any breaking change.
Key conceptsKey concepts への直接リンク
Your platform is represented as a manager account. The merchants you onboard are managed accounts. Rokt authorizes every request using your API token and the target {account_id} in the request path — the target account must be managed by your manager account, and requests for unrelated accounts are rejected server-side.
your platform (manager)
│
├── merchant A (managed account)
├── merchant B (managed account)
└── merchant C (managed account)
These four concepts are required to integrate safely. Read these before writing any code.
How Rokt derives caller context from your API token and authorizes against the target account_id.
Every write call requires an Idempotency-Key. Sending the same key twice returns the cached response — safe to retry.
PUT replaces the full list. Controls endpoints (MCL, status) have no PATCH or merge — send the complete desired state every time. The layout-edit endpoint is the one PATCH surface in V1 — it accepts sparse updates of the five theme tokens.
dry_run=true runs the full validation and returns the would-be response without persisting state. Use it to validate payloads before going live.