agency-time

POST /v1/agency/time/projects

Create a time-tracking project.

All agency-time endpoints

Authentication

Send an API key as a bearer token. The key must carry the agency.time.manage permission; a key without it is refused with 403, not 404.

Where your organisation id goes

This endpoint takes org_id as a field in the JSON body.

Your organisation id is on the API keys screen in your dashboard, beside the key itself. It is the same id in every call you make.

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/agency/time/projects \
  -H "Authorization: Bearer zdk_live_…" \
  -H "Content-Type: application/json" \
  -d '{ "name": <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

Requires `agency.time.manage` and the `agency_project_board` entitlement. `currency` is set on the PROJECT rather than derived from whichever rate card wins, because an invoice has exactly one currency: a project whose rates disagreed would produce a document that cannot be issued. A rate card in another currency is refused rather than converted — FX is a driver decision, not a timesheet's.

Request body

NameTypeRequiredWhat it is
namestringYes
client_idstringNo
board_idstringNo
currencystringNo
org_idstringNo

Response

NameTypeRequiredWhat it is
idstringYes
namestringYes
client_idstringYesThe agency's client this work is for, in the agency invoicing suite. `null` means **internal** work — reported on, never invoiced.
board_idstringYesThe agency project board this work is run on, when there is one.
currencystringYesISO currency this project's work is billed in. On the project because an invoice has exactly one currency; a rate card in another currency is refused rather than converted.
archivedbooleanYes
created_atstringYes

Errors this endpoint can return

401 · 403 · 422