Wallet Settings
Get my wallet settings
GET
/api/v1/wallet-settings/meReturns 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
}
}
}