client-reports
POST /v1/client-reports/brands/{brand_id}/reply-to/confirm
Confirm the reply-to address with the code it received.
Authentication
Send an API key as a bearer token. The key must carry the sites.create permission; a key without it is refused with 403, not 404.
This endpoint takes no organisation id. Your key already identifies the organisation it belongs to, and the response is scoped to it.
Try it
Replace anything in angle brackets with your own values, and the key placeholder with a key from your dashboard.
curl -X POST https://api.zinndigital.com/v1/client-reports/brands/{brand_id}/reply-to/confirm \
-H "Authorization: Bearer zdk_live_…" \
-H "Content-Type: application/json" \
-d '{ "code": <string> }'Signed in? The API console in your dashboard fills in your real organisation id and your own key, and runs the request against the live API so you can see the actual response. Open this endpoint in the API console
Details
A wrong or expired (24 h) code changes nothing. Requires sites.create.
Parameters
| Name | Type | Required | What it is |
|---|---|---|---|
brand_id (path) | string | Yes | — |
Request body
| Name | Type | Required | What it is |
|---|---|---|---|
code | string | Yes | — |
Response
| Name | Type | Required | What it is |
|---|---|---|---|
id | string | Yes | — |
name | string | Yes | — |
agency_name | string | Yes | — |
website | string | Yes | — |
logo_sha256 | string | Yes | — |
colour | string | Yes | — |
accent | string | Yes | — |
intro | string | Yes | — |
footer | string | Yes | — |
from_name | string | Yes | — |
reply_to | string | Yes | — |
reply_to_verified | boolean | Yes | — |
is_default | boolean | Yes | — |
created_at | string | Yes | — |
Errors this endpoint can return
401 · 403 · 404 · 422 · 429