SwiftGoma.SwiftGoma

Search endpoints

Jump to any API endpoint by name, method, or path

Wallet

Request payout OTP

POST/api/v1/wallet/payout/otp

First step of withdrawing from the wallet — sends a verification code to the seller.

Requires Authorization
SELLER only
Payout OTP
Request
curl --request POST \
  --url https://api.swiftgoma.com/api/v1/wallet/payout/otp \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "message": "Un code de vérification a été envoyé.",
    "expiresInMinutes": 5
  }
}