Skip to main content
POST
/
tasks
/
create
Create a new CRM task. Optionally link to records and assign to a member.
curl --request POST \
  --url https://api.supersonic.cv/tasks/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "priority": "low",
  "status": "todo",
  "due_date": "<string>",
  "assigned_to": "<string>",
  "record_ids": [
    "<string>"
  ]
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
title
string
required

Task title

description
string
priority
enum<string>
Available options:
low,
medium,
high,
urgent
status
enum<string>
Available options:
todo,
in_progress,
done
due_date
string

ISO datetime

assigned_to
string

Member UUID

record_ids
string[]

Record UUIDs to link

Response

Success

The response is of type object.