Create a task
Authorizations
Reevo API key passed as Authorization: Bearer <api-key>.
Body
Create writable-field surface.
Only the writable task scalars are declared. title is the sole
required-on-create attribute on the public wire; owner_user_id is
excluded from required-on-create and defaults to the API-key caller in the
adapter. status / priority / type are server-defaulted by the
adapter (the internal CreateTaskRequest requires them, but the public
surface does not). Non-writable fields (read-only render fields,
disposition which core drops on create, and the account / pipeline
relationships) are NOT declared here, so an explicit value lands in
__pydantic_extra__ and is rejected by the shared custom-field
write-validator. In particular owner_team_id is read-only — it has no
CRUD write path, so it is omitted here and an explicit value is rejected.
Account / pipeline linkage is written via the task relationship endpoints.
Response
Successful Response
Wrapper around a single TaskObjectRecord — GET / POST / PATCH.