API Reference
/- Retrieve a merchant
Onboard a merchant
Update a merchant
Update merchant status
Merchant
Retrieve a merchant
Retrieves details of a specific merchant by their merchant ID.
Security
JWT
GET
curl -i -X GET \
https://api.glomopay.com/api/v1/platform/merchants/merch_68c777fcOOMpl \
-H 'Authorization: Bearer <YOUR_JWT_HERE>'Merchant retrieved successfully
Current merchant status
Enum:"success""action_required""pending""failed""offboarded"
Example:"success"
Business sub-category (must be paired with correct category)
Example:"Veterinary Services"
Gender (only required for individual entity_type)
Enum:"male""female""undefined"
Example:"male"
Date of birth (only required for individual entity_type)
Example:"2001-08-04"
Country where the merchant is registered (ISO 3166-1 alpha-3)
Example:"IND"
List of countries where the merchant operates
Example:
[ "IND" ]
Timestamp when the merchant was created
Example:"2025-10-07T06:11:47Z"
Timestamp when the merchant was last updated
Example:"2025-10-07T06:11:47Z"
Response
{ "owner_merchant_id": "merch_68511919RVuf6", "merchant_id": "merch_68c777fcOOMpl", "status": "success", "name": "John Doe", "category": "Agricultural Services", "entity_type": "individual", "sub_category": "Veterinary Services", "gender": "male", "date_of_birth": "2001-08-04", "registration_number": "REG123456", "registration_country": "IND", "address": { "address_line1": "123 Main St", "address_line2": "", "city": "Bangalore", "state": "Karnataka", "pincode": "560060", "country": "IND" }, "operation_countries": [ "IND" ], "created_at": "2025-10-07T06:11:47Z", "updated_at": "2025-10-07T06:11:47Z", "jwt_token": "child_merchant_JWT", "public_key": "live_6889e287VfqrPVPg" }