This endpoint handles contact operations including creation, deletion, edit, password management and returning contact details.
- Contact - Create a new contact
- This method is used to create a contact provided the following are provided: active status, email address and full name.
- Contact - Return a list with all contacts
- This method will return a list of all contacts under a client with details in an array.
- Contact - Receive a request to reset password, and send a link by email with token
- This method sends the password recovery email based on the contact associated with the email address provided. Run this to get the details required for Receive a token and password, verify the user and reset your password
- Contact - Receive a token and password, verify the user and reset your password
- This method sets a new password based on the token provided in the forgot password recovery email and the new password to be used. This method requires data from Receive a request to reset password, and send a link by email with token
- Contact - Edit a Contact
- This method will update details supplied for a provided contact ID.
- Contact - Delete a contact
- This method will delete the contact associated with the provided contact ID.
- Contact - Return details of a specific contact
- This method returns all details for the specified contact ID.
- Contact - Change password for a contact
- This method will change the password for the specified contact ID provided the password sent is correct and a new password is sent.