---
title: "Make a Payment"
method: POST
path: "/v1/accounts/{accountId}/virtual/{iban}/payment"
tags: ["Virtual Accounts"]
---

# Make a Payment

`POST /v1/accounts/{accountId}/virtual/{iban}/payment`

Sends a payment from the virtual account with the given IBAN

## Path parameters

- `accountId` number, required
- `iban` string, required

## Request body

- VirtualAccountPaymentBody
  - `currency` string, required — The currency code for the payment
  - `amount` string, required — The amount of the payment
  - `reference` string, required — The reference for the payment
  - `nonce` string, required — A unique nonce to guard against duplicate payments
  - `reason` string, required — The reason for the payment

## Response `201`

The payment was successfully created

- VirtualAccountPaymentResponse
  - `transactionId` string, required
  - `end2EndId` string, required

## Other responses

- `404` — The accountId or IBAN is unknown

---

[API](https://skmtc.net/bcb/apis/payments-api.md) · [All operations](https://skmtc.net/bcb/apis/payments-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/bcb/payments-api/revisions/7559660d5268/schema)
