v1

latestOpenAPI 3.0.32026-07-26206388.3 KB
Merchant Onboarding

Get Onboarding Status

Retrieves the current onboarding status and all submitted information for a merchant. Always call this endpoint server-to-server after the merchant completes the iFrame verification flow to confirm final status.

get/gcc/v2/partner/merchant/onboard/{onboardingId}/status

Path parameters

onboardingIdstring required

Response

Onboarding status retrieved successfully.

gidstring

PayGlocal global transaction ID.

timestampstring

Response timestamp (DD/MM/YYYY HH:MM:SS).

reasonCodestring

Empty string on success.

Example response

{
  "gid": "gl_9c2645ed09edb22e",
  "timestamp": "10/01/2026 15:00:00",
  "data": {
    "merchantInfo": {
      "onboardingId": "pg_onboard_abc123",
      "partnerOnboardingId": "partner-merchant-001",
      "businessDetails": {
        "businessRegisteredAddress": {
          "stateCode": "MH",
          "state": "Maharashtra"
        },
        "businessOperatingAddress": {
          "stateCode": "MH",
          "state": "Maharashtra"
        }
      }
    }
  }
}