Logo
Acquired.com API API Documentation

Customers

Number of APIs: 4


1. Create a customer

POST {{url}}customers

The purpose of creating a customer is so that everything can be linked back to a customer_id. All transactions, payees, cards etc. are associated to a customer.

Creating a customer at the start of the process allows us to manage your customers for you.

https://docs.acquired.com/reference/create-customer



2. List all customers

GET {{url}}customers

Returns a list of all customers. Customers are returned by creation date, with the most recently created customers showing first.

https://docs.acquired.com/reference/fetch-all-customers



3. Retrieve a customer

GET {{url}}customers/:customer_id

Retrieves a customer using the unique customer_id. This identifier can be found in the response after creating a new customer.

https://docs.acquired.com/reference/fetch-customer-by-id



4. Update a customer

PUT {{url}}customers/:customer_id

This request allows you to update any details of the customer using the customer_id. You can choose to update certain parameters, any parameters not provided will be left unchanged.

https://docs.acquired.com/reference/update-customer



ENDPOINTS