cURL
curl --request PATCH \ --url https://api.stardex.ai/v1/tasks/{id} \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "content_text": "<string>", "task_type": "text", "due_date": "<string>", "is_completed": true } '
{ "success": true, "data": { "message": "Task updated successfully" } }
Update an existing task. Only provided fields are modified; omitted fields remain unchanged.
Authenticate with a Bearer token: API key, OAuth token, or session token.
Task ID
Plain text content of the task.
1
Task type.
text
linkedin_message
linkedin_connection
call
other
ISO 8601 due date, or null to clear.
Whether the task is completed.
Task updated
true
Show child attributes
Was this page helpful?