Skip to main content
POST
/
wallet
/
payout
/
{quoteId}
/
accept
Accept Swap Quote
curl --request POST \
  --url https://staging.api.mavapay.co/api/v1/wallet/payout/{quoteId}/accept \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "sourceWallet": "NGN"
}
'
{
  "status": "success",
  "message": "quote is being processed"
}

Authorizations

X-API-KEY
string
header
required

Path Parameters

quoteId
string<uuid>
required

The ID of the quote to accept

Body

application/json
sourceWallet
string
required

The source wallet currency (e.g., 'NGN')

Example:

"NGN"

Response

Successful swap

status
string
Example:

"success"

message
string
Example:

"quote is being processed"