Identity
GET
/v1/meCheck merchant identity and granted scopes. There is no request body. Sign with
{timestamp}. (trailing dot).
Example
cURL
curl -X GET https://api.transacty.ai/v1/me \
-H "X-Transacty-Key: $TRANSACTY_KEY" \
-H "X-Transacty-Timestamp: $TS" \
-H "X-Transacty-Signature: $SIG" \
-H "Content-Type: application/json"Response fields
| Field | Type | Description |
|---|---|---|
merchantId | string | Merchant unique identifier |
merchantSlug | string | Merchant slug |
slug | string | Same as merchantSlug |
businessName | string | Business display name |
scopes | string[] | Granted API scopes |
environment | string | The key’s mode: test or live (not a query parameter) |
Typical live key scopes: payin:create, payout:create, balance:read. * is for
non-production only.
A 401 Unauthorized means you should check your apiKey, secret, timestamp
(Unix seconds, ±5 minutes), and request signature.
Last updated on