{
"id": "tr_jKaHD105H",
"object": "transfer",
"amount": 2864,
"currency": "mxn",
"created_at": "2020-04-22T21:10:19.254Z",
"post_date": "2020-04-17T00:00:00.000Z",
"transaction_date": "2020-04-17T05:12:41.462Z",
"error_reason": null,
"comment": "Pago de gas",
"reference_id": "130824",
"receipt_url": "https://www.banxico.org.mx/cep/",
"tracking_key": "s2123423423324334",
"status": "accepted",
"type": "inbound",
"mode": "test",
"account_number": {
"id": "acno_Kasf91034gj1AD",
"object": "account_number",
"account_number": "738969123456789120",
"created_at": "2024-03-01T20:09:42.949787176Z",
"mode": "test",
"metadata": {
"id_cliente": "12343212"
}
},
"counterparty": {
"holder_id": "OODC911119JL3",
"holder_name": "Carmen Marcela",
"account_number": "012969123456789120",
"type": "clabe",
"type_code": "40",
"institution": {
"id": "40012",
"name": "BBVA Mexico",
"country": "mx"
}
}
}
Transfer Object
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the transfer. |
object | string | The type of the object, which is always transfer. |
amount | integer | The amount of the transfer in the smallest currency unit (e.g. centavos for MXN). |
currency | string | Currency of the transfer (in ISO 4217 format, e.g., MXN). |
created_at | string | Timestamp when the transfer object was created (in ISO 8601 format). |
post_date | string | The date the transfer was posted (YYYY-MM-DD format). |
transaction_date | string | The actual date when the transfer was initiated (YYYY-MM-DD format). |
rejection_reason | string | The reason why the transfer was rejected, if aplicable. |
reference_id | string | A unique reference ID for the transfer, used for reconciliation purposes. |
comment | string | A comment or reference provided by the sender for the transfer. |
receipt_url | string | A URL to the receipt of the transfer, if available. |
tracking_key | string | The unique tracking key for the transaction provided by the banking system. |
status | string | The status of the transfer. It can be accepted or rejected for inbound transfers; pending , succeeded or failed |
type | string | Whether the transfer was inbound or outbound. |
mode | string | Mode of the API (test or live ). |
account_number | object | The AccountNumber object associated with this transfer. See below for details on this object. |
counterparty | object | Information about the Counterparty (sender if inbound, receiver if outbound) of the transfer. See details below. |
AccountNumber Object (within Transfer Object)
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the account number. |
object | string | The type of the object, which is always account_number . |
account_number | string | The account number (for Mexico: CLABE) of the sender. |
created_at | string | Timestamp when the account number was created (in ISO 8601 format). |
mode | string | Mode of the API (test or live ). |
metadata | object | Optional key-value pairs associated with this account number. |
Counterparty Object (within Transfer Object)
Field | Type | Description |
---|---|---|
holder_id | string | The unique ID of the third party of the transaction (counterparty). |
holder_name | string | The name of the third party of the transaction (counterparty). |
account_number | string | The account number (in Mexico: CLABE) of the third party of the transaction (counterparty). |
type | string | The type of the counterparty account. Options for Mexico: clabe . Options for Chile: checking , sight . |
institution | object | The institution object containing details about the sender's financial institution. |
Institution Object (within Counterparty)
Field | Type | Description |
---|---|---|
id | string | Unique identifier for the institution. |
name | string | The name of the financial institution. |
country | string | The country where the financial institution is located (in ISO 3166-1 alpha-2 format, e.g., mx for Mexico). |