Create customer
Step by step guide on how to create a customer.
Step 1 - Create Customer
curl -X POST https://api.alignlabs.dev/v0/customers \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"email": "[email protected]",
"first_name": "John",
"last_name": "Doe",
"type": "individual"
}'{
"customer_id": "123e4567-e89b-12d3-a456-426614174000",
"email": "[email protected]"
}Last updated
