GET/v1/account/profile

Get merchant profile

Returns your sub-merchant profile, KYC status, and enabled features.

Authentication

Secret Key — send Authorization: Bearer YOUR_KEY header.

Response fields

FieldTypeDescription
idstringMerchant ID
business_namestringRegistered business name
kyc_statusstringpending | approved | rejected
statement_descriptorstringVisa descriptor suffix (max 14 chars)

Code examples

bash
curl https://api.watenga.africa/v1/account/profile \
  -H "Authorization: Bearer sk_test_YOUR_KEY"

Response example

json
{
  "success": true,
  "data": {
    "id": "mer_01HQ",
    "business_name": "Acme Trading",
    "kyc_status": "approved",
    "statement_descriptor": "ACME TRADING"
  }
}