Create Customer

This endpoint creates the customer.

All KYC and KYB checks are handled by the service so you can safely move funds, knowing that your users have been vetted properly in compliance with legal requirements.

When you register a new customer, they must agree to the terms of service, and we must collect key information such as name and email, along with unique identifiers such as SSN or EIN/TIN. This information allows KYC/KYB to properly approve the customer before initiating any transactions.

POST https://dev-api.altra.click/payment/customers

Request Body

NameTypeDescription

full_name*

Required

This requires the users firstname and lastname

type*

Required

Each customer is represented as an "individual"

email*

Required

// Create Customer
{
    "full_name": "FN1 LN1",
    "type": "individual",
    "email": "t2@test.com"
}

Last updated