Create Task
POST
/api/task
task
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.plazbot.com/api/task' \
--header 'x-workspace-id;' \
--header 'Content-Type: application/json' \
--data-raw '{
"workspaceId": "string",
"name": "string",
"description": "string",
"notes": "string"
}'
Response Response Example
{
"success": true,
"code": 200,
"errorCode": null,
"message": "The information was processed correctly.",
"data": {
"taskId": "string",
"task": {
"id": "string",
"workspaceId": "string",
"name": "string",
"description": "string",
"creationDate": "2025-04-08T02:49:32.9668533Z",
"updatedDate": null,
"expirationDate": null,
"statusId": 1,
"notes": "string",
"asignedUsers": null,
"projectStatusId": null,
"files": [],
"project": [],
"subTask": [],
"orderInCards": 1,
"orderInCardsLastUpdated": "2025-04-08T02:49:46.137701Z"
}
}
}
Request
Header Params
x-workspace-id
string
required
Body Params application/json
Responses
Modified at 2025-04-21 20:11:00