Obtiene los datos fiscales actuales de una persona moral o física dado su RFC y CIFID
Con RFC y CIFID
api/v1/SAT/current-tax-data/{rfc}
/{idCIF}
Este servicio obtiene los datos fiscales actuales de una persona moral o física dado su RFC y CIFID
URL
bash
GET /api/v1/SAT/current-tax-data/{rfc}/{idCIF}
Headers
Authorization: Bearer {token}
Accept: application/json
URL Params
Input | Type | Required | Values acceptable | Default |
---|---|---|---|---|
rfc | string | true | ||
idCIF | string | true |
Data Params
txt
None
Respuestas Posibles
Success
Code: 200 Response Aceptada
Content:
json
{
"status": true,
"data": {
"razon_social": "GIMORU",
"regimen_de_capital": "SA DE CV",
"fecha_constitucion": {
"date": "2015-05-25 00:00:00.000000",
"timezone_type": 3,
"timezone": "UTC"
},
"rfc": "GIM150525L37",
"id_cif": "15060205949",
"fecha_inicio_operaciones": {
"date": "2015-05-25 00:00:00.000000",
"timezone_type": 3,
"timezone": "UTC"
},
"situacion_contribuyente": "ACTIVO",
"fecha_ultimo_cambio_situacion": {
"date": "2015-05-25 00:00:00.000000",
"timezone_type": 3,
"timezone": "UTC"
},
"entidad_federativa": "NUEVO LEON",
"municipio_delegacion": "MONTERREY",
"colonia": "BERNARDO REYES",
"tipo_vialidad": "AVENIDA (AV.)",
"nombre_vialidad": "ALFOSO REYES",
"numero_exterior": "30000",
"numero_interior": "LOC 7",
"codigo_postal": "64280",
"correo_electronico": "jr_covarrubias@hotmail.com",
"al": "NUEVO LEON 2",
"regimenes": [
{
"regimen": "Régimen General de Ley Personas Morales",
"regimen_id": "601",
"fecha_alta": {
"date": "2015-05-25 00:00:00.000000",
"timezone_type": 3,
"timezone": "UTC"
}
}
],
"extra_data": []
}
}
Unauthorized
Code: 401 Unauthorized
Content:
json
{
"message": "Unauthenticated."
}
Unprocessable Content
Code: 422 Unprocessable Content
Content:
json
{
"status": false,
"message": "The RFC expression does not contain the valid parts"
}
Unprocessable Content
Code: 422 Unprocessable Content
Content:
json
{
"status": false,
"message": "Failed to found CIF info."
}
Ejemplo con curl
bash
curl --location --request GET 'https://bridge.paladins.mx/api/v1/SAT/current-tax-data/GIM150525L37/15060205949' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer zbSSVOcamRzUmgx6OD8FS3N3XvB3vhhViqk3iuK6'