Skip to main content
POST
/
clients
/
me
/
integrations
/
noah
/
payouts
/
quote
Quote payout
curl --request POST \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/noah/payouts/quote \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "channelId": "<string>",
  "cryptoCurrency": "<string>",
  "fiatAmount": "<string>",
  "fiatCurrency": "<string>",
  "form": {},
  "paymentMethodId": "<string>"
}
'
{
  "data": {
    "payoutId": "<string>",
    "formSessionId": "<string>",
    "cryptoAmountEstimate": "<string>",
    "totalFee": "<string>",
    "nextStep": {}
  }
}

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Body

application/json
channelId
string
required
cryptoCurrency
string
required
fiatAmount
string
required
fiatCurrency
string
form
object
paymentMethodId
string

Response

Payout quote created successfully

data
object