POST
/
api
/
v1
/
customers
/
Create Customer
curl --request POST \
  --url https://skala-sandbox.ripio.com/api/v1/customers/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "email": "[email protected]",
  "type": "INDIVIDUAL"
}'
{
  "customerId": "7142b065-79c4-4f48-9e33-11b23bg689e2",
  "email": "[email protected]",
  "createdAt": "2024-04-10T18:17:07.702533Z"
}

Authorizations

Authorization
string
header
required

Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.

Body

application/json

Customer creation payload.

Payload for creating a new customer.

email
string<email>
required

The email of the individual or juridical person.

type
enum<string>
required

The type of customer involved.

Available options:
INDIVIDUAL,
BUSINESS
Example:

"INDIVIDUAL"

Response

Customer created successfully.

Response payload for a customer.

customerId
string

A unique customer's ID.

Example:

"7142b065-79c4-4f48-9e33-11b23bg689e2"

email
string<email>

The email of the individual or juridical person.

createdAt
string<date-time>

The date and time of customer's creation.

Example:

"2024-04-10T18:17:07.702533Z"