Onboarding in Argentina

Step-by-step guide to onboard Argentinian users

Create a Customer

Begin by creating a customer and saving the customerId generated in the response.

{
    "email": "[email protected]",
    "type": "INDIVIDUAL"
}
{
    "customerId": "9dd8a1b3-d366-49eb-a20f-e380c19b17fe",
    "createdAt": "2024-11-27T16:14:39.198Z"
}

Add KYC Info

Once you have created a customer, you can now add their KYC information. This will create a new KYC submissionId, which can be used to track their KYC status.

{
  "kycSubmission": {
    "firstName": "Valentina",
    "lastName": "García",
    "dateOfBirth": "1992-12-05",
    "country": "AR",
    "city": "Rosario",
    "zipCode": "S2000",
    "address": "Avenida Pellegrini 303",
    "state": "Santa Fe",
    "nationalities": ["Argentinian"],
    "phoneNumber": "+3415553456",
    "occupation": "Designer"
    }
}
{
    "submissionId": "719c6d23-abc9-43cc-a854-f9c814cf01bf",
    "createdAt": "2024-12-02T21:41:33.363Z",
    "firstName": "Valentina",
    "lastName": "García",
    "dateOfBirth": "1992-12-05",
    "country": "AR",
    "city": "Rosario",
    "zipCode": "S2000",
    "address": "Avenida Pellegrini 303",
    "state": "Santa Fe",
    "nationalities": [
        "Argentinian"
    ],
    "phoneNumber": "+3415553456",
    "occupation": "Designer"
}

KYC Required Fields

FieldRequiredType
firstNametruestring
lastNametruestring
dateOfBirthtruedate
countrytruestring
countryCodetruestring
citytruestring
zipCodetruestring
addresstruestring
statetruestring
nationalitiestruearray
National ID Fronttruefile_upload
National ID Backtruefile_uploa

Add KYC Files

Next, upload copies of the front and back of the customer's DNI (Documento Nacional de Identidad) using the Add KYC Files endpoint.

Submit KYC

Once all of the required information and files have been uploaded, the next step is to Submit the KYC submission to be processed.

Complete KYC

In the Sandbox environment, you will need to call the Create Webhook endpoint to move the KYC into COMPLETEDstatus.

{
  "referenceId": "{{submissionId}}",
  "eventType": "KYC",
  "status": "COMPLETED",
  "metadata": null
}

Finally, the Customer KYC is complete. Now, it is time to add their payment method and begin transacting.