v1
latestOpenAPI 3.0.12026-07-268028223.9 KBTasks
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"
}