👤Order Customer
Create/Update/Get orders
Last updated
Create/Update/Get orders
Last updated
Orders are any sales-related orders placed by your customers that you would like to track in NinjaPipe Sales dashboard.
You can also import your existing contacts from the CRM as customers. Contacts in the CRM and the customers in your sales are two separate entities. However, you can always import contacts from the CRM as a customer via the import API.
Use this API to import an existing contact from the CRM to the sales dashboard as a sales customer.
POST
https://app.ninjapipe.com/v1/customers/import
POST
https://app.ninjapipe.com/v1/customers/create
Creates a new sales order customer in your tenant.
PUT
https://app.ninjapipe.com/v1/customers/update
GET
https://app.ninjapipe.com/v1/customers/get?id={customer_id}
GET
https://app.ninjapipe.com/v1/customers/getall
Currently, deleting a customer is not supported via the API. You may use the web or mobile platform to initiate a deletion
/api/v1/customers/create
API_KEY
{"full_name":"Emily Johnson","gender":"Female","picture_url":"https://cdn.pixabay.com/photo/2016/03/31/19/57/avatar-1295404_1280.png","email":"emily.johnson@example.com","organization":"Tech Solutions Inc.","phone_number":"+1-555-123-4567"}
No body
/api/v1/customers/update
API_KEY
{"id":919,"tenant_id":1,"full_name":"Emily Johnson","gender":"Female","picture_url":"https://cdn.pixabay.com/photo/2016/03/31/19/57/avatar-1295404_1280.png","email":"emily.johnson@example.com","organization":"Tech Solutions Inc.","phone_number":"+1-555-123-4567"}
No body
/api/v1/customers/get
919
API_KEY
No body
/api/v1/customers/getall
API_KEY
No body