Create Customer
Creates a new customer account (individual or business). This is the foundational step for other API use cases.
Authorizations
Access token obtained via /oauth2/token/. Use as Authorization: Bearer <access_token>.
Body
Customer creation payload.
Payload for creating a new customer.
The email of the individual or juridical person.
The type of customer involved.
INDIVIDUAL, BUSINESS "INDIVIDUAL"
Optional customer identifier supplied by the partner. If you send it, it must be a valid UUID — any other value is rejected with a 400. If you omit it, Ripio generates one and returns it in the response.
"8142b065-79c4-4f48-9e33-11b17bc658d4"
Optional phone number for the customer.
"+5491112345678"
Response
Customer created successfully.
Response payload for a customer.
A unique customer's ID. Either the one you supplied on creation or the one Ripio generated for you.
"7142b065-79c4-4f48-9e33-11b23bc689e2"
The email of the individual or juridical person.
The phone number of the individual or juridical person. null if not provided.
"+5491112345678"
Whether the customer account is active. Returns false after the customer has been deactivated; in that case, operations on the customer's resources (KYC, fiat accounts, transactions, sessions) return 404.
true
The date and time of customer's creation.
"2024-04-10T18:17:07.702533Z"