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

Update Password

POST
/api/user/resetPassword
user
Servicio para Restablecer constraseña del usuario.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.plazbot.com/api/user/resetPassword' \
--header 'Content-Type: application/json' \
--data-raw '{
    "email": "string",
    "newPassword": "string",
    "verificationId": "string"
}'
Response Response Example
[
  {
    "id": "string",
    "userId": "string",
    "name": "string",
    "lastName": "string",
    "email": "string",
    "password": "string",
    "code": "string",
    "urlAvatar": "string",
    "loginTypeId": 0,
    "googleId": "string",
    "googleToken": "string",
    "googleExpire": "string",
    "googleExpirationDate": "2019-08-24T14:15:22Z",
    "googleRefreshToken": "string",
    "flagTutorial": 0,
    "themeMode": "string",
    "creationDate": "2019-08-24T14:15:22Z",
    "lastActivityDate": "2019-08-24T14:15:22Z",
    "role": "string",
    "language": "string",
    "country": "string",
    "companyRole": "string",
    "companySize": "string",
    "companySector": "string",
    "originFirstHeardPlazbot": "string",
    "category": "string",
    "currencyId": "string",
    "flagState": 0,
    "flagVerifiedEmail": true,
    "internalNotes": "string",
    "isOnboardingFinalized": true,
    "defaultStartWeek": 0,
    "tokens": [
      {
        "type": "string",
        "value": "string",
        "permissions": [
          "string"
        ],
        "expiresAt": "2019-08-24T14:15:22Z"
      }
    ],
    "status": 0,
    "userDeletion": "string",
    "deletionDate": "2019-08-24T14:15:22Z",
    "timezone": "string",
    "timezoneOffset": 0,
    "company": "string",
    "notificationPreferences": {
      "contactAssignment": true,
      "opportunityAssignment": true,
      "taskAssignment": true,
      "commentMention": true
    },
    "changePasswordData": {
      "id": "string",
      "creationDate": "2019-08-24T14:15:22Z",
      "expirationDate": "2019-08-24T14:15:22Z"
    },
    "isExternalCreation": true
  }
]

Request

Body Params application/json
email
string  | null 
required
newPassword
string  | null 
required
verificationId
string  | null 
required
Examples

Responses

🟢200OK
text/plain
OK
Body
array of:
id
string  | null 
optional
userId
string  | null 
optional
name
string  | null 
optional
lastName
string  | null 
optional
email
string  | null 
optional
password
string  | null 
optional
code
string  | null 
optional
urlAvatar
string  | null 
optional
loginTypeId
integer <int32> | null 
optional
googleId
string  | null 
optional
googleToken
string  | null 
optional
googleExpire
string  | null 
optional
googleExpirationDate
string <date-time> | null 
optional
googleRefreshToken
string  | null 
optional
flagTutorial
integer <int32> | null 
optional
themeMode
string  | null 
optional
creationDate
string <date-time> | null 
optional
lastActivityDate
string <date-time> | null 
optional
role
string  | null 
optional
language
string  | null 
optional
country
string  | null 
optional
companyRole
string  | null 
optional
companySize
string  | null 
optional
companySector
string  | null 
optional
originFirstHeardPlazbot
string  | null 
optional
category
string  | null 
optional
currencyId
string  | null 
optional
flagState
integer <int32> | null 
optional
flagVerifiedEmail
boolean  | null 
optional
internalNotes
string  | null 
optional
isOnboardingFinalized
boolean  | null 
optional
defaultStartWeek
integer <int32>
optional
tokens
array[object (Token_) {4}]  | null 
optional
type
string  | null 
optional
value
string  | null 
optional
permissions
array[string] | null 
optional
expiresAt
string <date-time> | null 
optional
status
integer <int32>
optional
userDeletion
string  | null 
optional
deletionDate
string <date-time> | null 
optional
timezone
string  | null 
optional
timezoneOffset
integer <int32> | null 
optional
company
string  | null 
optional
notificationPreferences
object (NotificationPreferences_) 
optional
contactAssignment
boolean 
optional
opportunityAssignment
boolean 
optional
taskAssignment
boolean 
optional
commentMention
boolean 
optional
changePasswordData
object (ChangePasswordData_) 
optional
id
string  | null 
optional
creationDate
string <date-time> | null 
optional
expirationDate
string <date-time> | null 
optional
isExternalCreation
boolean  | null 
optional
Previous
Send Reset Password
Next
Get Workspace by ID
Built with