links

POST /v1/connector/claim

Redeem a pairing code — called by the Zinn® WordPress connector plugin.

All links endpoints

Authentication

This endpoint is public. It takes no credential and no organisation — it is what our own marketing site and AI answer engines read.

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/connector/claim \
  -H "Content-Type: application/json" \
  -d '{ "code": <string>, "site_url": <string>, "username": <string>, "application_password": <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

**Unauthenticated by necessity**: the caller is a WordPress plugin on the customer's own server, which has no session with us. The pairing code identifies the organisation, is single-use, and expires in thirty minutes. The credential it carries is verified against the site before anything is stored. Every invalid-code failure returns the same sentence, so a caller cannot use this endpoint to discover whether a code exists.

Request body

NameTypeRequiredWhat it is
codestringYes
site_urlstringYes
usernamestringYes
application_passwordstringYes
site_namestringNo

Response

NameTypeRequiredWhat it is
site_idstringYes
primary_domainstringYes
detailstringYes

Errors this endpoint can return

422 · 429