Create Transfer From Quote
POST /v0/customers/{customer_id}/onramp-transfer/quote/{quote_id}
Creates an onramp transfer using an existing quote.
Path /v0/customers/{customer_id}/onramp-transfer/quote/{quote_id}
Path parameters
customer_id (string · uuid) — Required The unique identifier of the customer
quote_id (string · uuid) — Required The unique identifier of the quote
Header parameters
Authorization (string) — Required Token for authentication
Request body (application/json)
destination_address (string) — Required The blockchain address where the funds will be sent Example:
0x742d35Cc6634C0532925a3b844Bc454e4438f44e
Examples
POST /v0/customers/{customer_id}/onramp-transfer/quote/{quote_id} HTTP/1.1
Host: gateway.noxxo.com
Authorization: text
Content-Type: application/json
Accept: */*
Content-Length: 68
{
"destination_address": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
}curl -X POST "https://gateway.noxxo.com/v0/customers/{customer_id}/onramp-transfer/quote/{quote_id}" \
-H "Authorization: text" \
-H "Content-Type: application/json" \
-d '{"destination_address":"0x742d35Cc6634C0532925a3b844Bc454e4438f44e"}'fetch("https://gateway.noxxo.com/v0/customers/{customer_id}/onramp-transfer/quote/{quote_id}", {
method: "POST",
headers: {
"Authorization": "text",
"Content-Type": "application/json"
},
body: JSON.stringify({
destination_address: "0x742d35Cc6634C0532925a3b844Bc454e4438f44e"
})
})
.then(res => res.json())
.then(console.log);Responses
201 — Successful onramp transfer initiation response (application/json)
Example response:
Last updated 3 months ago
Last updated