Skip to main content
POST
/
api
/
contact
/
{contactId}
/
activities
Update Activities to Contact
curl --request POST \
  --url https://api.plazbot.com/api/contact/{contactId}/activities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --header 'x-workspace-id: <x-workspace-id>' \
  --data '
{
  "workspaceId": "<string>",
  "content": "<string>"
}
'
{
  "success": true,
  "code": 123,
  "errorCode": "<unknown>",
  "message": "<string>",
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

x-workspace-id
string
required

Path Parameters

contactId
string
required

Id del contacto.

Body

application/json
workspaceId
string
required

Workspace Id

content
string
required

Descripcion del comentario o actividad.

Response

200 - application/json

OK

success
boolean
required
code
integer
required
errorCode
null
required
message
string
required
data
null
required