SwiftGoma.SwiftGoma

Search endpoints

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

Wallet Settings

Get my wallet settings

GET/api/v1/wallet-settings/me

Returns the signed-in seller's wallet settings.

Requires Authorization
SELLER only
Session
Request
curl --request GET \
  --url https://api.swiftgoma.com/api/v1/wallet-settings/me \
  --header 'Authorization: Bearer <access_token>'
200Example response
{
  "success": true,
  "data": {
    "id": "ws_1a2b3c",
    "sellerProfileId": "sp_2b3c4d",
    "payoutPhoneNumber": "243812345678",
    "payoutProvider": "MTN_MOMO_COD",
    "payoutCountry": "CD",
    "minimumPayoutAmounts": {
      "USD": 20,
      "CDF": 50000
    }
  }
}