curl --request POST \
--url https://api.supersonic.cv/tasks/update \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"task_id": "<string>",
"title": "<string>",
"description": "<string>",
"priority": "low",
"status": "todo",
"due_date": "<string>",
"assigned_to": "<string>",
"record_ids": [
"<string>"
]
}
'