Customers ​
This object represents a customer of your business. Use it to create recurring charges, save payment and contact information, and track payments that belong to the same customer.
Endpoints ​
Create a customer ​
- POST /v1/customers
Update a customer ​
- POST /v1/customers/:id
Retrieve a customer ​
- GET /v1/customers/:id
List all customers ​
- GET /v1/customers
Delete a customer ​
- DELETE /v1/customers/:id
Search customers ​
- GET /v1/customers/search
Events ​
customer.createdOccurs whenever a new customer is created.customer.deletedOccurs whenever a customer is deleted.customer.updatedOccurs whenever any property of a customer changes.