v1

latestOpenAPI 3.1.0UNLICENSED2026-07-2613101.1 MB
Remitters

Create a new stablecoin remitter

Creates a new stablecoin remitter for a given Budget.

post/stablecoins/remitters

Query parameters

accountIdstring required

The ID of the account to work with.

Example:F50091

Request body

budgetIdstring uuid required

The ID of the budget to work with.

displayNamestring nullable
sourceCurrencyCodestring required

The currency the remitter will send.

destinationCurrencyCodestring required

The currency that should be received into the budget.

requesterIpAddressstring

The IP address of the remitter requester.

Example request

{
  "budgetId": "775596ae-2624-40af-a9dc-9756110a4a03",
  "displayName": "John Smith",
  "sourceCurrencyCode": "USDC",
  "destinationCurrencyCode": "USD",
  "details": {
    "type": "INDIVIDUAL",
    "firstName": "John",
    "lastName": "Smith",
    "dateOfBirth": "1946-01-19",
    "emailAddress": "test@equalsmoney.com",
    "nationality": "AD",
    "residentialAddress": {
      "streetName": "Upper Thames Street",
      "buildingNumber": "68",
      "buildingName": "Vintners Place",
      "postcode": "EC4V 3BJ",
      "city": "London",
      "region": "Greater London",
      "countryCode": "GB"
    }
  },
  "requesterIpAddress": "127.0.0.1"
}

Response

Created

idstring uuid required

The ID of the BVNK remitter to work with.

accountIdstring required

The ID of the account to work with.

budgetIdstring uuid required

The ID of the budget to work with.

status'OPEN' required
displayNamestring nullable
sourceCurrencyCodestring required

The currency the remitter will send.

destinationCurrencyCodestring required

The currency that should be received into the budget.

createdBystring required
createdAtstring date-time required

The date the Resource was initially created. ISO 8601 format without milliseconds.

updatedAtstring date-time required

The date the Resource was last modified. ISO 8601 format without milliseconds.

Example response

{
  "id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  "accountId": "F50091",
  "budgetId": "775596ae-2624-40af-a9dc-9756110a4a03",
  "status": "OPEN",
  "displayName": "John Smith",
  "sourceCurrencyCode": "USDC",
  "destinationCurrencyCode": "USD",
  "details": {
    "type": "INDIVIDUAL",
    "firstName": "John",
    "lastName": "Smith",
    "dateOfBirth": "1946-01-19",
    "emailAddress": "test@equalsmoney.com",
    "nationality": "AD",
    "residentialAddress": {
      "streetName": "Upper Thames Street",
      "buildingNumber": "68",
      "buildingName": "Vintners Place",
      "postcode": "EC4V 3BJ",
      "city": "London",
      "region": "Greater London",
      "countryCode": "GB"
    }
  },
  "link": {
    "url": "https://pay.sandbox.bvnk.com/channel?uuid=9d1f67f2-a647-404b-9b02-247c77be81d0",
    "chains": [
      {
        "protocol": "ETH",
        "address": "0x0000000000000000000000000000000000000000"
      }
    ]
  },
  "createdBy": "John Smith",
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}