Create a user
Creating a new customer on Trustcrow is quite straight forward. The minimal amount of information required are the customers first name, last name and email address.
You are only able to create customers where their email address is not already in use. Creating an account for a user that already exists will result in an error, and an HTTP 403 will be returned. Once a customer has been created, either through the API or if they've signed up themselves, their information can no longer be created by API integrations.
Create a new user
POST
{{api_url}}/v1/users
Headers
Accepts
string
application/json
Authorization
string
your Trustcrow API keys with which you authorize customers.
Request Body
first_name
String
The first name of the customer
last_name
String
The last name of the customer
email_address
String
The email address of the customer
cURL Request
Note:
To successfully create a customer, you must first create a wallet and complete KYC. Failure to do so will result in a bad request response upon attempting to create the customer.
Upon successful creation of a customer, the system automatically generates a wallet for that customer.
Last updated