Create Cross-Chain Transfer From Quote
Create Cross-Chain Transfer from Quote
post
/v0/customers/{customer_id}/cross-chain-transfer/quote/{quote_id}
Path parameters
customer_idstring · uuidRequired
The unique identifier of the customer
quote_idstring · uuidRequired
The unique identifier of the quote to use for the transfer
Header parameters
AuthorizationstringRequired
Token for authentication
Body
destination_addressstringRequiredExample:
The destination address where the tokens will be sent
0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8bResponses
200
Successful creation of Cross-Chain Transfer from quote
application/json
post
/v0/customers/{customer_id}/cross-chain-transfer/quote/{quote_id}POST /v0/customers/{customer_id}/cross-chain-transfer/quote/{quote_id} HTTP/1.1
Host: api.alignlabs.dev
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 67
{
"destination_address": "0x742d35Cc6634C0532925a3b8D4C9db96c4b4d8b"
}200
Successful creation of Cross-Chain Transfer from quote
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"status": "pending",
"amount": "text",
"source_network": "polygon",
"source_token": "usdc",
"source_address": "text",
"destination_network": "polygon",
"destination_token": "usdc",
"destination_address": "text",
"quote": {
"deposit_token": "usdc",
"deposit_address": "text",
"deposit_network": "polygon",
"deposit_amount": "text",
"fee_amount": "text"
}
}Last updated