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

Get Task By Id

GET
/api/task/{workspaceId}/{id}
task
Servicio para extraer la informacion de una tarea filtrado por ID.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.plazbot.com/api/task//' \
--header 'x-workspace-id;'
Response Response Example
[
  {
    "id": "string",
    "workspaceId": "string",
    "name": "string",
    "description": "string",
    "creationDate": "2025-04-08T02:51:50.6642623Z",
    "updatedDate": null,
    "expirationDate": null,
    "statusId": 1,
    "notes": "string",
    "asignedUsers": null,
    "projectStatusId": null,
    "files": [],
    "project": [],
    "subTask": [],
    "orderInCards": 0,
    "orderInCardsLastUpdated": "2025-04-08T02:51:54.5937784Z"
  }
]

Request

Path Params
workspaceId
string 
required
Workspace ID
id
string 
required
Id de la tarea.
Header Params
x-workspace-id
string 
required

Responses

🟢200OK
application/json
OK
Body
array of:
id
string 
optional
workspaceId
string 
optional
name
string 
optional
description
string 
optional
creationDate
string 
optional
updatedDate
null 
optional
expirationDate
null 
optional
statusId
integer 
optional
notes
string 
optional
asignedUsers
null 
optional
projectStatusId
null 
optional
files
array[string]
optional
project
array[string]
optional
subTask
array[string]
optional
orderInCards
integer 
optional
orderInCardsLastUpdated
string 
optional
Previous
Create Task
Next
Delete Task
Built with