Egypt

Read about how to configure the API to validate Egyptian Tax IDs.

Egypt has some particular requirements.

There are 2 types of Tax IDs that can be validated in Egypt. The main one is called the Tax Registration Number (TRN) and this is paired with the Unique Identification Number (UIN). Both need to be provided for a valid result.

The Tax Registration Number (TRN) is used to help identify the business for tax purposes in Egypt.

You also need to provide a Unique Identification Number (UIN) alongside the Egyptian Tax ID, the TRN, to identify the party.

Use the taxRegistrationNumber field for the TRN and the taxRegistrationAdditionalId field to model the UIN. For example:

<-------------Code omitted for clarity---------------------------------------------------------------->
    "taxRegistrations": [
      {
        "taxRegistrationNumber": {TRN},
        "taxRegistrationAdditionalId": "{UIN}",
        "isoCountryCode": "string",
        "mainDivision": "string",
        "fiscalRepresentative": {
          "businessName": "string",
          "address": {
            "streetAddress1": "string",
            "city": "string",
            "postalCode": "string",
            "streetAddress2": "string",
            "mainDivision": "string",
            "subDivision": "string",
            "country": "string",
            "taxAreaId": "string"
          },
<-------------Code omitted for clarity---------------------------------------------------------------->