proposals

POST /v1/public/proposals/{token}/accept

Accept the newest revision. Raises its invoice in the same transaction.

All proposals endpoints

All developer docs

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/public/proposals/{token}/accept \
  -H "Content-Type: application/json" \
  -d '{ "name": <string>, "agree": <boolean> }'

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

agree must be true and name is the typed acceptance. If the invoice cannot be raised the proposal is NOT accepted (409). A zero total raises no invoice and opens the project immediately.

Parameters

NameTypeRequiredWhat it is
token (path)stringYesThe capability token from the link in the proposal e-mail.

Request body

NameTypeRequiredWhat it is
namestringYes
agreebooleanYes

Response

NameTypeRequiredWhat it is
referencestringYes
statusProposalStatusYes
revisionintegerYes
expiredbooleanYes
answerablebooleanYes
documentobjectNoThe frozen revision the recipient reads — title, message, lines, totals.
invoiceProposalInvoice | nullNo
projectobjectNoThe project room — cards, messages and files — once paid.
historyProposalEvent[]Yes
localestringNo
directionstring<ltr, rtl>No
issuer_namestringNo
labelsobjectYes

Errors this endpoint can return

404 · 409 · 422 · 429