Skip to main content
POST
/
v1
/
tasks
Create a task
curl --request POST \
  --url https://api.vendaze.com/v1/tasks \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "Call the client",
  "due_date": "2026-07-15T14:00:00Z",
  "notes": "<string>",
  "type_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "person_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "deal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "owner_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "title": "Call the client",
    "notes": "Confirm Monday meeting.",
    "type_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "due_date": "2026-07-15T14:00:00Z",
    "person_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "company_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "deal_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "owner_user_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "priority": "high",
    "completed": false,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.vendaze.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

OAuth 2.1 access token.

Body

application/json
title
string
required
Maximum string length: 200
Example:

"Call the client"

due_date
string<date-time>
required
Example:

"2026-07-15T14:00:00Z"

notes
string
type_id
string<uuid>
person_id
string<uuid>
company_id
string<uuid>
deal_id
string<uuid>
owner_user_id
string<uuid>
priority
enum<string>
Available options:
high,
medium,
low

Response

Task created successfully.

data
object