# BREB

BREB (Banco de la Republica Electronic Bridge) is Colombia's interbank settlement network for bank-to-bank transfers.

**Country:** Colombia | **Currency:** COP | **Direction:** Pay-out

## Required fields

| Field                     | Type     | Description              |
| ------------------------- | -------- | ------------------------ |
| `type`                    | `string` | Must be `"BREB"`         |
| `currency`                | `string` | Must be `"COP"`          |
| `breb.bankId`             | `string` | Recipient bank code      |
| `breb.accountNumber`      | `string` | Recipient account number |
| `breb.customer.firstName` | `string` | Recipient first name     |
| `breb.customer.lastName`  | `string` | Recipient last name      |
| `breb.customer.email`     | `string` | Recipient email          |

## Example

```json
{
  "type": "BREB",
  "currency": "COP",
  "breb": {
    "bankId": "1022",
    "accountNumber": "123456789",
    "customer": {
      "firstName": "Camila",
      "lastName": "Torres",
      "email": "camila@example.com"
    }
  }
}
```

## OpenAPI reference

* Spec: `conomyhq-api`
* Component: `breb`
* Source: [Payment API.yaml](https://raw.githubusercontent.com/conomyapp/gitbook-docs/main/.gitbook/assets/Payment%20API.yaml)
