Get All Offramp Transfers

Get All Offramp Transfers

get
Query parameters
limitinteger · min: 1 · max: 100Optional

Maximum number of records to return

skipintegerOptional

Number of records to skip

Header parameters
AuthorizationstringRequired

Token for authentication

Responses
200
Successful retrieval of offramp transfers list
application/json
get
GET /v0/customers/{customer_id}/offramp-transfer HTTP/1.1
Host: api.alignlabs.dev
Authorization: text
Accept: */*
200

Successful retrieval of offramp transfers list

{
  "items": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "status": "pending",
      "amount": "text",
      "source_token": "usdc",
      "source_network": "polygon",
      "destination_currency": "usd",
      "destination_bank_account": {
        "bank_name": "text",
        "account_holder_type": "individual",
        "account_holder_first_name": "text",
        "account_holder_last_name": "text",
        "account_holder_business_name": "text",
        "account_type": "iban",
        "iban": {
          "bic": "text",
          "iban_number": "text"
        }
      }
    }
  ]
}

Last updated