Tasks
Create a task
Create a new task
post/v1/tasks
Headers
Idempotency-Keystring
Unique key to ensure idempotent request handling. If a request with the same key was already processed, the original response will be returned.
Request body
Example request
{
"book_id": "abc123xyz",
"title": "Follow up with client",
"description": "Call to discuss portfolio",
"deadline_at": "2024-12-31T23:59:59Z"
}Response
task created
Example response
{
"id": "abc123xyz",
"title": "Follow up with client"
}Changes
No recorded changes to this endpoint across all 1 revision of this API.