Create a customer
POST {{baseUrl}}/payments/br/customers/
Documentation 🚀
For each new user you want to request funds from, you will need to create a customer
in Belvo's database.
Once you create the customer, you'll need to save the id
that is returned in the response and then use it when creating a payment link.
You can reuse the customer ID for that user for all future payment link requests.
If you check out the Qodex Tests tab, you'll see that we do this for you in our collection and save it as an environment variable so that you can easily use it in the Create a payment link request.
Request Body
{"customer_type"=>"INDIVIDUAL", "name"=>"user_name", "email"=>"user_email_address", "country"=>"BRA", "identifier_type"=>"CPF", "identifier"=>"user_CPF_number"}