Create Virtual Account

Create new Virtual Account

post

Creates Virtual Account and returns deposit information

Path parameters
customer_idstringRequired

The unique identifier of the customer

Header parameters
AuthorizationstringRequired

Token for authentication

Body
source_currencystring · enumRequired

The currency for the source

Possible values:
destination_tokenstring · enumOptional

The currency to be deposited

Possible values:
destination_networkstring · enumRequired

The blockchain network for the destination

Possible values:
destination_addressstringOptional

The blockchain address where the funds will be sent

Responses
201
Successful offramp transfer initiation response
application/json
post
POST /v0/customers/{customer_id}/virtual-account HTTP/1.1
Host: api.alignlabs.dev
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 113

{
  "source_currency": "usd",
  "destination_token": "usdc",
  "destination_network": "polygon",
  "destination_address": "text"
}
201

Successful offramp transfer initiation response

{
  "id": "123e4567-e89b-12d3-a456-426614174000",
  "status": "active",
  "destination_token": "usdc",
  "destination_network": "polygon",
  "destination_address": "text",
  "deposit_instructions": {
    "payment_rails": [
      "swift"
    ],
    "currency": "eur",
    "bank_name": "text",
    "bank_address": "text",
    "account_holder_name": "text",
    "iban": {
      "bic": "text",
      "iban_number": "text"
    }
  }
}

Last updated