CFDI 4.0 - objetos impuestos
Los registros paginados
/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos
Este servicio proporciona un JSON que contiene TODOS los registros del catalogo
URL
bash
GET /api/v1/SAT/catalogs/cfdi-40-objetos-impuestos
Headers
Authorization: Bearer {token}
Accept: application/json
URL Params
Input | Type | Required | Values acceptable | Default |
---|---|---|---|---|
page | number | false |
Data Params
txt
None
Respuestas Posibles
Success
Code: 200 Response Aceptada
Content:
json
{
"data": [
{
"id": "01",
"texto": "No objeto de impuesto.",
"vigencia_desde": "2022-01-01",
"vigencia_hasta": ""
},
{
"id": "02",
"texto": "S\u00ed objeto de impuesto.",
"vigencia_desde": "2022-01-01",
"vigencia_hasta": ""
},
{
"id": "03",
"texto": "S\u00ed objeto del impuesto y no obligado al desglose.",
"vigencia_desde": "2022-01-01",
"vigencia_hasta": ""
},
{
"id": "04",
"texto": "S\u00ed objeto del impuesto y no causa impuesto.",
"vigencia_desde": "2022-10-07",
"vigencia_hasta": ""
},
{
"id": "05",
"texto": "S\u00ed objeto del impuesto, IVA cr\u00e9dito PODEBI.",
"vigencia_desde": "2023-12-06",
"vigencia_hasta": ""
}
],
"links": {
"first": "https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos?page=1",
"last": "https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos",
"per_page": 15,
"to": 5,
"total": 5
}
}
Unauthorized
Code: 401 Unauthorized
Content:
json
{
"message": "Unauthenticated."
}
Ejemplo con curl
bash
curl --location --request GET 'https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 3|jIoi6R40Kic8IkKtT7XQu4nUM78BqwqxTsPKtQGi67f00c2a'
El registro dado un identificador
/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos/
Este servicio proporciona un JSON que contiene UN la infomación de un registro del catalogo
URL
bash
GET api/v1/SAT/catalogs/cfdi-40-objetos-impuestos/{cfdi_40_objetos_impuesto}
Headers
Authorization: Bearer {token}
Accept: application/json
URL Params
Input | Type | Required | Values acceptable | Default |
---|---|---|---|---|
cfdi_40_objetos_impuesto | string | true |
Data Params
txt
None
Respuestas Posibles
Success
Code: 200 Response Aceptada
Content:
json
{
"data": {
"id": "01",
"texto": "No objeto de impuesto.",
"vigencia_desde": "2022-01-01",
"vigencia_hasta": ""
}
}
Unauthorized
Code: 401 Unauthorized
Content:
json
{
"message": "Unauthenticated."
}
Ejemplo con curl
bash
curl --location --request GET 'https://bridge.paladins.mx/api/v1/SAT/catalogs/cfdi-40-objetos-impuestos/01' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer 3|jIoi6R40Kic8IkKtT7XQu4nUM78BqwqxTsPKtQGi67f00c2a'