Skip to content

GBDUL

The overview describes the common field interpretation rules, failure reasons, and full/light file formats.

Parent: gbdul_result. State Database of Legal Entities data.

Fields of gbdul_result.

Fields marked “Required” are always present within this object. Other fields are included when a value is available; null is excluded from the response.

Field JSON type Purpose and conditions
bin string Required. Organization's BIN, up to 12 characters; may be an empty string before it is populated.
status string, enum Required: PENDING, SUCCESS, NOT_FOUND, FAILED, ERROR_ACCEPTED; see the meanings.
result_json JSON Organization data from the provider.
result boolean Stored technology result: true means accepted, false means a negative result. May be absent before calculation; consider the status and the details below.
failure_reason object Failure reason, if recorded; see the structure.

When service unavailability is allowed, status: "ERROR_ACCEPTED", result: true, and failure_reason may be present simultaneously. This affects the aggregate outcome as described in the overview.

JSON examples

Fragments of the root response object, not complete responses. All values and URLs are illustrative. File formats follow the explanations on this page.

{
  "gbdul_result": {
    "bin": "000000000000",
    "status": "ERROR_ACCEPTED",
    "result": true,
    "failure_reason": {
      "type": "SERVICE_ERROR"
    }
  }
}