Bancoagrícola Logo
RefundsTokenization

Country:

POST

/customers

Create Customer

Create a new customer profile

email

string
required

Customer email address

example

name

string
required

Customer full name

example

phone

string

Customer phone number

example

address

object

Customer billing address

Response Examples

200

Customer created successfully

400

Invalid customer data

500

Internal server error

Language

Login required to test API

Code Examples

cURL

curl -X POST "https://api.akua.la/customers" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
  "email": "customer@example.com",
  "name": "John Doe",
  "phone": "+1234567890",
  "address": {
    "street": "123 Main St",
    "city": "New York",
    "state": "NY",
    "zip": "10001",
    "country": "US"
  }
}''