Quotes#Execute

Submits the Quote to begin processing to fiat.

Example request

curl https://{{base_url}}/users/USER_ID/quotes/QUOTE_ID/execute
-X POST \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-type: application/json" \
-d '{
      "quote": {
         "crypto_transfer": {
            "tx_id": "0x65be7196da49cd3f5c3f6a0ff0f1583910a6b6c9a8a28946adfa1084dd76d657",
            "blockchain": "polygon",
            "network": "mainnet"
          }
      }
    }
}'

Endpoint Information

Execute a Quote

POST https://{{base_url}}/users/:user_id/quotes/:quote_id/execute

Send a Quote for processing

Path Parameters

Name
Type
Description

user_id*

UUID

The ID for the User who is making the payment.

quote_id*

UUID

The ID of the Quote that has been fulfilled.

Request Body

Name
Type
Description

tx_id*

String

The transaction hash of the crypto transfer that was made to the deposit address.

blockchain*

String

The blockchain the crypto transfer to the deposit address was made on (e.g. 'ethereum', 'polygon', 'tron', 'arbitrum').

network*

String

The network the crypto transfer to the deposit address was made on (e.g. 'mainnet', 'sepolia').

Last updated