v1
latestOpenAPI 3.1.02026-07-245361280.3 KBOnboard accounts
Update account information and upload documents
This service is responsible for updating KYC information for an account and uploading its documents.
patch/v2/accounts/{account_id}/kyc
Path parameters
account_idstring required
User’s dLocal account ID.
Request body
Example request
{
"body": {
"consents": [
{
"type": "DATA_COLLECTION",
"name": "John Doe",
"accepted": true
}
],
"company_information": {
"ip_address": "127.0.0.1",
"ubos": [
{
"document_type": "DNI",
"document_expedition_date": "2012-06-28",
"name": "Jose Lopez",
"nationality": "UY",
"country": "UY",
"city": "Montevideo",
"address": "Dr. Luis Bonavita 1234",
"date_of_birth": "1990-04-25",
"email": "legalrepresentative@email.com",
"ownership_percentage": 15.5
}
]
}
}
}Response
OK
Example response
{
"account_id": "d907f733-5e17-4470-b963-f2ac2c11a440",
"account_email": "email@platforms.com",
"status": "APPROVED",
"status_code": 200,
"status_detail": "approved",
"creation_date": "2021-07-12T12:07:08-00:00",
"last_updated": "2021-07-12T13:07:08.000Z",
"platform_type": "MERCHANTNAME",
"account_country": "AR",
"capabilities": [
{
"capability_name": "PAYINS",
"capability_status": "ENABLED"
}
],
"consents": [
{
"type": "DATA_COLLECTION",
"name": "John Doe",
"accepted": true,
"updated_date": "2021-07-12T12:07:08-00:00"
}
]
}