v1
latestOpenAPI 3.1.02026-07-245361280.3 KBAccount management
Update account settings
This service is responsible for updating account settings like pricing level and settlement period.
patch/v2/accounts/{account_id}/settings
Path parameters
account_idstring required
User’s dLocal account ID.
Request body
Example request
{
"pricing_level": "type_1",
"settlement_period": 7,
"installments_responsible": "merchant",
"settlements": [
{
"config_delay_days": 7,
"country_code": "AR",
"payment_method_type": "CARD",
"payment_method_id": "VD"
}
]
}Response
OK
Example response
{
"account_id": "d907f733-5e17-4470-b963-f2ac2c11a440",
"settings": {
"pricing_level": "type_1",
"settlement_period": 7,
"installments_responsible": "merchant",
"settlements": [
{
"config_delay_days": 7,
"country_code": "AR",
"payment_method_type": "CARD",
"payment_method_id": "VD"
}
]
}
}