Align API
  • Overview
    • About
    • Features & Use Cases
    • Blockchains
    • Countries & Currencies
    • Compliance
  • PRODUCTS
    • Cross-Chain Stablecoin Transfers
    • Cross-Chain Stablecoin Deposits
    • Fiat To Stablecoin (On-Ramp)
    • Stablecoin To Fiat (Off-Ramp)
    • Yield Generating Stablecoins
  • Align API
    • Customers
      • Create Customer
      • Get Customer
      • Fetch Customers
      • Create KYC Session
      • Share Individual KYC
    • Cross Chain Transfers
      • [Create] Cross-Chain Transfer
      • [Complete] Cross-Chain Transfer
      • [Get] Cross-Chain Transfer
      • [Create] Permanent Route Address
      • [Get] Permanent Route Address
      • [List] Permanent Route Addresses
    • Offramp Transfers
      • Create Offramp Transfer
      • Complete Offramp Transfer
      • Get Offramp Transfer
    • Onramp Transfers
      • Create Onramp Transfer
      • Get Onramp Transfer
    • Developer
      • Get Developer Fees
      • Update Developer Fees
    • Files
      • Upload File
    • Virtual Accounts
      • Create Virtual Account
      • Get Virtual Account
      • Get All Virtual Accounts
  • FEes
    • Developer Fees
    • Align Fees
  • Legal
    • Terms & Conditions
    • Privacy Policy
  • Guides
    • Create customer
Powered by GitBook
On this page
  1. Align API
  2. Customers

Create Customer

PreviousCustomersNextGet Customer

Last updated 6 months ago

Create a new customer

post
Header parameters
AuthorizationstringRequired

Token for authentication

Body
emailstring · emailRequired

The unique email address of the customer

first_namestringOptional

The first name of the customer (required for individual customers)

last_namestringOptional

The last name of the customer (required for individual customers)

company_namestringOptional

The name of the company (required for corporate customers)

beneficiary_typestring · enumRequired

The type of beneficiary

Possible values:
Responses
200
Successful retrieval of liquidation address
application/json
post
POST /v0/customers HTTP/1.1
Host: api.alignlabs.dev
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 119

{
  "email": "name@gmail.com",
  "first_name": "text",
  "last_name": "text",
  "company_name": "text",
  "beneficiary_type": "individual"
}
200

Successful retrieval of liquidation address

{
  "customer_id": "123e4567-e89b-12d3-a456-426614174000",
  "email": "name@gmail.com",
  "kycs": {
    "status": "pending",
    "kyc_flow_link": "text"
  }
}