How create a customer
Create a customer
To create a new customer use the following endpoint: customer (**POST** https://api.calypso.finance/api/v1/customer-purse/customer/create
)
You can find the detailed description of all the parameters in the documentation:
Create a customer
Here we consider the most important ones.
To create a new user, you need to pass this parameter in the request:
account (required) - your product/service account id.
timestamp (required) - Current unix UTC timestamp in milliseconds. Must not be less than 3 minutes in the past and not greater than 3 minutes in the future
payload (required) - Request data for creating a new Customer
email
description
So to create new customer you just have to send request:
curl
If the creation was successful you receive the response:
curl
Update a customer
To update a customer use the following endpoint: customer (**POST** https://api.calypso.finance/api/v1/customer-purse/customer/update
)
You can find the detailed description of all the parameters in the documentation:
Here we consider the most important ones.
To create a new user, you need to pass this parameter in the request:
account (required) - your product/service account id.
timestamp (required) - Current unix UTC timestamp in milliseconds. Must not be less than 3 minutes in the past and not greater than 3 minutes in the future
payload (required) - Request data for creating a new Customer
id (required) - Customer ID
email
description
So to update customer you just have to send request:
curl
If the update was successful you receive the response:
curl
Last updated