CORE API
Identity

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)

FieldTypeDescription
merchantIdstringMerchant unique identifier
scopesstring[]Granted API scopes
environmentstringEnvironment 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: check apiKey, secret, timestamp, and request signature.