Skip to content

Listar configuraciones de impuestos

GET
/taxes

Obtiene la lista completa de configuraciones de impuestos de la organización.
Incluye tanto impuestos activos como inactivos para gestión administrativa.

Authorizations

bearerAuth

JWT token de autenticación. Utilice este esquema para autenticar solicitudes con un token JWT.

TypeHTTP (bearer)

Parameters

Query Parameters

is_active

Filtrar por estado activo/inactivo

Typeboolean
Exampletrue
type

Filtrar por tipo de impuesto

Typestring
Enum
VATINCOMERETENTIONOTHER
ExampleVAT

Responses

Lista de impuestos obtenida exitosamente
application/json
JSON
{
"status": "success",
"data": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "IVA",
"description": "Impuesto al Valor Agregado del 19%",
"percentage": 19,
"type": "VAT",
"is_active": true,
"applies_to": [
"CREDIT",
"FEE"
],
"minimum_amount": 1000,
"usage_count": 142,
"created_at": "2024-01-15T10:30:00Z",
"updated_at": "2024-01-15T10:30:00Z"
},
{
"id": "456e7890-e89b-12d3-a456-426614174000",
"name": "Retención Fuente",
"description": "Retención en la fuente del 3.5%",
"percentage": 3.5,
"type": "RETENTION",
"is_active": true,
"applies_to": [
"PAYMENT"
],
"minimum_amount": 2000,
"usage_count": 89,
"created_at": "2024-01-10T09:15:00Z",
"updated_at": "2024-01-12T14:22:00Z"
},
{
"id": "789e1234-e89b-12d3-a456-426614174000",
"name": "ICA Bogotá",
"description": "Impuesto de Industria y Comercio Bogotá",
"percentage": 0.414,
"type": "OTHER",
"is_active": false,
"applies_to": [
"CREDIT"
],
"minimum_amount": 5000,
"usage_count": 23,
"created_at": "2024-01-05T08:20:00Z",
"updated_at": "2024-01-20T16:45:00Z"
}
]
}

Playground

Server
Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI