Plazbot
  1. Message
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. Message

List Conversation

GET
/api/message/conversation
message
Servicio que extrae toda la informacion de las conversaciones por el id del Workspace.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.plazbot.com/api/message/conversation?workspaceId&continuationToken' \
--header 'x-workspace-id;'
Response Response Example
{
  "success": true,
  "code": 200,
  "errorCode": null,
  "message": "List obtained successfully.",
  "data": {
    "workspaceId": "string",
    "newContinuationToken": null,
    "data": [
      {
        "id": "string",
        "contactId": "string",
        "workspaceId": "string",
        "internalWhatsappNumber": "string",
        "platformSenderId": "string",
        "platformSenderName": "string",
        "platformSenderPhone": "string",
        "workspaceName": "string",
        "templateCode": "string",
        "templateType": "string",
        "type": 0,
        "campaignName": "string",
        "agentSenderId": "string",
        "requestBody": "string",
        "responseBody": "string",
        "responseStatus": "string",
        "creationDate": "2025-04-07T22:24:30.9310377Z"
      }
    ]
  }
}

Request

Query Params
workspaceId
string 
required
Workspace ID
continuationToken
string 
optional
Token de paginacion de 20 Registros.
Header Params
x-workspace-id
string 
required

Responses

🟢200OK
application/json
OK
Body
success
boolean 
required
code
integer 
required
errorCode
null 
required
message
string 
required
data
object 
required
workspaceId
string 
required
newContinuationToken
null 
required
data
array [object {17}] 
required
Previous
Send Message Whatsapp
Next
Send Conversation
Built with