Create a new stablecoin remitter beta

Creates a new stablecoin remitter for a given Budget.

SecurityCommonAuth
Request
query Parameters
accountId
required
string

The ID of the account to work with.

Example: accountId=F50091
Request Body schema: application/json

Body

budgetId
required
string <uuid> <= 36 characters

The ID of the budget to work with.

displayName
string or null [ 1 .. 255 ] characters
sourceCurrencyCode
required
string [ 3 .. 4 ] characters

The currency the remitter will send.

destinationCurrencyCode
required
string [ 3 .. 4 ] characters

The currency that should be received into the budget.

required
Individual (object) or Business (object)
requesterIpAddress
string

The IP address of the remitter requester.

Responses
201

Created

post/stablecoins/remitters
Request samples
application/json
{
  • "budgetId": "775596ae-2624-40af-a9dc-9756110a4a03",
  • "displayName": "John Smith",
  • "sourceCurrencyCode": "USDC",
  • "destinationCurrencyCode": "USD",
  • "details": {
    },
  • "requesterIpAddress": "127.0.0.1"
}
Response samples
application/json
{
  • "id": "e9293471-5eb3-4dbc-916c-dbaf9e2deefd",
  • "accountId": "F50091",
  • "budgetId": "775596ae-2624-40af-a9dc-9756110a4a03",
  • "status": "OPEN",
  • "displayName": "John Smith",
  • "sourceCurrencyCode": "USDC",
  • "destinationCurrencyCode": "USD",
  • "details": {
    },
  • "link": {},
  • "createdBy": "John Smith",
  • "createdAt": "2019-08-24T14:15:22Z",
  • "updatedAt": "2019-08-24T14:15:22Z"
}