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

Create User

POST
/api/user
user
Servicio para la creacion de Usuarios en la plataforma.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.plazbot.com/api/user' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "lastName": "string",
    "email": "string",
    "password": "string",
    "company": "string",
    "isExternalCreation": true
}'

Request

Body Params application/json
name
string  | null 
required
Nombre del usuario
lastName
string  | null 
required
Apellido del usuario
email
string  | null 
required
Email del usuario
password
string  | null 
required
Clave del usuario.
company
string 
required
Colocar -> plazbot
isExternalCreation
boolean  | null 
required
En caso de crear el usuario por fuera de la plataforma coloca valor True.
Examples

Responses

🟢200OK
OK
This response does not have a body.
Previous
Delete Task
Next
Get Information by Email
Built with