Plazbot
  1. Task
Plazbot
  • Plazbot Developer Hub
  • Automation
    • Update Agente IA Prompt
      POST
  • Contact
    • Get Contacts
      GET
    • Create Contact
      POST
    • Update Contact
      PUT
    • Get Contact By Id
      GET
    • Get Contact By Email
      GET
    • Get Contact By Phone
      GET
    • Update Activities to Contact
      POST
  • Message
    • Send Message Whatsapp
      POST
    • List Conversation
      GET
    • Send Conversation
      POST
  • Opportunity
    • Get Opportunity
      GET
    • Create Opportunity
      POST
    • Get Opportunity by Id
      GET
    • Delete Opportunity
      DELETE
    • Create Activity for Opportunity
      POST
  • Task
    • Create Task
      POST
    • Get Task By Id
      GET
    • Delete Task
      DELETE
  • User
    • Create User
      POST
    • Get Information by Email
      GET
    • Login Access
      POST
    • Send Reset Password
      POST
    • Update Password
      POST
  • Workspace
    • Get Workspace by ID
  1. Task

Create Task

POST
/api/task
task
Servicio para creación de Tareas.
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
workspaceId
string 
required
Workspace ID
name
string 
required
Nombre de la tarea.
description
string 
required
Descripcion de la tarea.
notes
string 
required
Notas de la tarea.
Examples

Responses

🟢200OK
application/json
OK
Body
success
boolean 
required
code
integer 
required
errorCode
null 
required
message
string 
required
data
object 
required
taskId
string 
required
task
object 
required
Previous
Create Activity for Opportunity
Next
Get Task By Id
Built with