Identity
Endpoint
- Method:
GET - Path:
/v1/me - Purpose: Check merchant identity and scopes
Request Payload
No request body.
Query Parameters
No query parameters.
Response
Success (200)
| Field | Type | Description |
|---|---|---|
merchantId | string | Merchant unique identifier |
scopes | string[] | Granted API scopes |
environment | string | Environment label: test or live |
{
"merchantId": "your-merchant-uuid",
"scopes": ["payin:create", "payout:create", "balance:read", "*"],
"environment": "test"
}environment can be test or live depending on merchant mode.
Common Error
401 Unauthorized: checkapiKey,secret, timestamp, and request signature.