Skip to main content
GET
/
{version}
/
merchants
/
merchant-info
Get Merchant Info
curl --request GET \
  --url https://api.example.com/{version}/merchants/merchant-info \
  --header 'Authorization: Bearer <token>'
{
  "id": 123,
  "name": "<string>",
  "type": "<string>",
  "email": "<string>",
  "phone": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

version
string
required
Allowed value: "v1"

Query Parameters

merchant_id
integer
required
merchant_type
enum<string>
required
Available options:
MICRO_ORGANIZATION,
ORGANIZATION

Response

Successful Response

MerchantInfoResponse

id
integer
required
name
string
required
type
string
required
email
string | null
phone
string | null

E.164 digits only, without '+' (e.g. 231771234567)

Required string length: 8 - 15
Last modified on June 23, 2026