GET
/
taxpayers
/
{id}
/
tax-status
curl --request GET \
  --url https://api.syntage.com/taxpayers/{id}/tax-status \
  --header 'X-API-Key: <api-key>'
{
  "@context": "<string>",
  "@id": "/taxpayers/PEIC211118IS0/tax-status",
  "@type": "hydra:Collection",
  "hydra:member": [
    {
      "@id": "/tax-status/91106968-1abd-4d64-85c1-4e73d96fb997",
      "@type": "TaxStatus",
      "id": "91106968-1abd-4d64-85c1-4e73d96fb997",
      "file": {
        "type": "TaxStatus",
        "resource": "/tax-status/91106968-1abd-4d64-85c1-4e73d96fb997",
        "mimeType": "application/pdf",
        "extension": "pdf",
        "filename": "91106968-1abd-4d64-85c1-4e73d96fb997.pdf"
      },
      "rfc": "PEIC211118IS0",
      "cif": 20060152922,
      "person": {
        "fullName": "Pedro Infante Cruz",
        "firstName": "Pedro",
        "middleName": "Infante",
        "lastName": "Cruz",
        "curp": "PEIC90110UEYBVT85"
      },
      "company": {
        "legalName": "APPLE OPERATIONS MEXICO",
        "tradeName": "APPLE OPERATIONS MEXICO S.A. DE C.V.",
        "entityType": "SOCIEDAD ANONIMA DE CAPITAL VARIABLE"
      },
      "email": "my-email@test.com",
      "phone": "5512345678",
      "address": {
        "streetReferences": [
          "Camiño Galván"
        ],
        "streetNumber": "8124",
        "buildingNumber": "496",
        "locality": "TUXTLA GUTIERREZ",
        "municipality": "TUXTLA GUTIERREZ",
        "postalCode": "29000",
        "state": "CHIAPAS",
        "streetName": "Plaza Jorge Luis",
        "streetType": "Calle",
        "neighborhood": "Paseo Ricardo",
        "statusRaw": "LOCALIZADO - Domicilio Localizado"
      },
      "economicActivities": [
        {
          "name": "Asalariado",
          "order": "1",
          "percentage": "100",
          "endDate": "2023-12-25",
          "startDate": "2023-12-25"
        }
      ],
      "taxRegimes": [
        {
          "code": 601,
          "name": "Régimen de Sueldos y Salarios e Ingresos Asimilados a Salarios",
          "endDate": "2023-12-25",
          "startDate": "2023-12-25"
        }
      ],
      "obligations": [
        {
          "description": "Pago definitivo mensual de IVA.",
          "dueDate": "A más tardar el día 17 del mes inmediato posterior al periodo que corresponda.",
          "endDate": "2023-12-25",
          "startDate": "2023-12-25"
        }
      ],
      "startedOperationsAt": "2023-11-07T05:31:56Z",
      "status": "Activo",
      "statusUpdatedAt": "2023-11-07T05:31:56Z",
      "createdAt": "2020-01-01T12:15:00.000Z",
      "updatedAt": "2020-01-01T12:15:00.000Z"
    }
  ],
  "hydra:view": {
    "@id": "<string>",
    "@type": "hydra:PartialCollectionView",
    "hydra:next": "/entity/2a15f539-3251-48e1-aaeb-a154dc9c6edb/resource?id[lt]=9b8e5365-0b36-45f5-9c76-fbe439632367",
    "hydra:last": "/entity/2a15f539-3251-48e1-aaeb-a154dc9c6edb/resource?id[gt]=9b8e5365-0b36-45f5-9c76-fbe439632367"
  },
  "hydra:search": {
    "@type": "<string>",
    "hydra:template": "<string>",
    "hydra:variableRepresentation": "<string>",
    "hydra:mapping": [
      {
        "@type": "<string>",
        "variable": "<string>",
        "property": "<string>",
        "required": true
      }
    ]
  }
}

Authorizations

X-API-Key
string
header
required

Your API key is available in the Production and Sandbox dashboards.

Path Parameters

id
string
required

RFC (Registro Federal de Contribuyentes)

Required string length: 12 - 13
Example:

"PEIC211118IS0"

Query Parameters

id[lt]
string

The collection cursor pointer to the next page

id[gt]
string

The collection cursor pointer to the previous page

itemsPerPage
integer
default:20

The number of items per page

Required range: 1 <= x <= 1000

Response

200
application/ld+json

Taxpayer tax status collection response

The response is of type object.