Country:
/v1/merchants/{id}
Obtener Comercio por su ID
El endpoint permite recuperar la información detallada de un comercio específico mediante su ID único. Al hacer una solicitud con el ID del comercio, se devuelve toda la información asociada a ese comercio, como su nombre, ubicación, dirección de facturación, estado, y más.
URL Parameters
id
Identificador único del comercio
example
Response Examples
200
200
{
"id": "example_string",
"organization_id": "example_string",
"name": "example_string",
"type": "ECOMMERCE",
"alias": "example_string",
"billing_address": {
"country": "example_string",
"street": "example_string",
"number": "example_string",
"city": "example_string",
"state": "example_string",
"zip_code": "example_string"
},
"location_address": {
"country": "example_string",
"street": "example_string",
"number": "example_string",
"state": "example_string",
"city": "example_string",
"zip_code": "example_string"
},
"email": "example_string",
"phone": "example_string",
"status": "example_string",
"activity": "example_string",
"default_currency": "example_string",
"supported_currencies": [
"example_string"
],
"rails": {
"VISA": {
"mcc": "example_string",
"rail_merchant_external_id": "example_string",
"payfac_id": "example_string",
"annual_volume": [
{
"currency": "example_string",
"value": 123
}
],
"products": {
"DEBIT": {
"enabled": true,
"merchant_network_id": "example_string",
"fee": {
"fee_type": "example_string",
"transaction_fee": 123,
"withdrawal_fee": 123,
"currency": "example_string"
},
"settlement": {
"frequency": "example_string"
}
}
}
}
},
"website": "example_string",
"tax_information": {
"tax_id": "example_string",
"tax_id_type": "example_string",
"legal_name": "example_string",
"fiscal_responsibilities": [
{
"code": "example_string"
}
],
"retention_rules": [
{
"tax_type": "example_string",
"retention_applicable": true
}
],
"legal_representative": {
"full_name": "example_string",
"email": null,
"phone": "example_string",
"role": "example_string",
"identification_type": "example_string",
"identification_number": "example_string"
}
},
"payout_information": {
"bank_name": "example_string",
"bank_account_number": "example_string",
"bank_account_holder_name": "example_string",
"bank_account_type": "example_string",
"bank_swift_code": "example_string",
"bank_country": "example_string",
"currency": "example_string"
},
"fee_configuration": {
"fee_type": "example_string",
"transaction_fee": 123,
"withdrawal_fee": 123,
"currency": "example_string"
},
"contract_information": {
"type": "example_string",
"start_date": "2024-01-15T10:30:00Z",
"end_date": "2024-01-15T10:30:00Z"
},
"notes": "example_string",
"created_at": "example_string",
"updated_at": "example_string"
}404
404
{
"message": "example_string",
"error_type": "example_string"
}Language
Login required to test API
Code Examples
cURL
curl -X GET "https://api.akua.la/v1/merchants/example_value" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"