This section provides a comprehensive guide to managing the customers in our system. You will find various options for retrieving, filtering, and setting Customer information, each tailored to different requirements.
/get_customers
offset
- Specify the starting point of the row from which to begin fetching customers.limit
- Control the number of customers returned in a single request. The maximum limit is 50, but you can opt for a smaller number based on your needs.offset
and limit
.These features are particularly useful for handling large datasets and for applications requiring batch processing of Customer information.
For fetching specific customer data used for LOGIN
forms using email
and password
from your applications you may use /get_customer
endpoint to make a call which is usually used for customer Login attempts
.
/get_customers
IN
- Specify the Customer IDs to find specific customers.NOT_IN
- Specify the Customer IDs to find all customers excluded these IDs./get_customers
email
- Specify the email address to find specific customer./get_customers
customer_id
- Specify the Customer ID to find specific customer.
set_customer_update_profile
setter API call is a public API call to update a single customer data.set_customer_register
setter API call is a public API call to Register a new customer.set_customer_password_reset_request
setter API call is a public API call to reset a single customer password by sending customer a password recovery using email.set_customer_delete_account
setter API call is a public API call to delete a single customer data.
For further assistance or API integration support, please refer to our API Support or contact our technical support team.