Skip to content
GitLab
Projects Groups Topics Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • C cm-mdp-public-docs
  • Project information
    • Project information
    • Activity
    • Members
  • Deployments
    • Deployments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Terraform modules
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
Collapse sidebar
  • public-docs
  • cm-mdp-public-docs
  • Wiki
  • API Sector Privado

API Sector Privado · Changes

Page history
Create API Sector Privado authored Mar 17, 2025 by Nicolas Goldberg's avatar Nicolas Goldberg
Show whitespace changes
Inline Side-by-side
API-Sector-Privado.md 0 → 100644
View page @ 0b396a33
## Rutas sector privado
### CUENTAS CORRIENTES
<details open>
**<summary>Listado cuenta corrientes</summary>**
<br/>
`Endpoint`
```
[POST] /cta_cte
```
`Request`
```JSON
{
"cantidad": number,
"offset": number,
"matricula": "string",
"desde": "string",
"hasta": "string",
"tipo": "H" | "A"
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"resultados": [
{
"fecha": "string",
"tipo_mov": "string",
"num_mov": "string",
"descrip": "string",
"debe": number,
"haber": number,
"saldo": number,
"ordeno": number,
}
]
}
```
</details>
<details open>
**<summary>Archivo extracto cuenta corriente</summary>**
<br/>
`Endpoint`
```
[POST] /cta_cte/resumen
```
`Request`
```JSON
{
"matricula": "string",
"desde": "string",
"hasta": "string",
"tipo": "H" | "A"
"formato": "PDF" | "CSV" | "EXCEL" -> depende cual acepte
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
### LIQUIDACIONES
<details open>
**<summary>Listado liquidaciones</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/listado
```
`Request`
```JSON
{
"cantidad": number,
"offset": number,
"matricula": "string",
"desde": "string",
"hasta": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"resultados": [
{
"fecha": "string",
"descrip": "string",
"numero": number,
"prestaciones": number,
"retenciones": number,
"total": number,
"id": "string",
"ordeno": number,
}
]
}
```
</details>
<details open>
**<summary>Archivo listado liquidaciones</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/listado/resumen
```
`Request`
```JSON
{
"matricula": "string",
"desde": "string",
"hasta": "string",
"formato": "PDF" | "CSV" | "EXCEL" -> depende cual acepte
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
<details open>
**<summary>Archivo caratula</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/caratula
```
`Request`
```JSON
{
"id": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
<details open>
**<summary>Archivo detalle liquidacion</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/detalle
```
`Request`
```JSON
{
"id": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
### LIQUIDACIONES PENDIENTES
<details open>
**<summary>Listado liquidaciones pendientes</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/pendientes/listado
```
`Request`
```JSON
{
"cantidad": number,
"offset": number,
"matricula": "string",
"pend_tipo": "P"
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"resultados": [
{
"fecha": "string",
"descrip": "string",
"numero": number,
"prestaciones": number,
"retenciones": number,
"total": number,
"id": "string",
"ordeno": number,
}
]
}
```
</details>
<details open>
**<summary>Archivo liquidaciones pendientes</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/pendientes/resumen
```
`Request`
```JSON
{
"matricula": "string",
"pend_tipo": "P"
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
<details open>
**<summary>Archivo deuda consolidada</summary>**
<br/>
`Endpoint`
```
[POST] /liquidaciones/pendientes/deuda
```
`Request`
```JSON
{
"matricula": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
### FACTURAS
<details open>
**<summary>Listado de facturas</summary>**
<br/>
`Endpoint`
```
[POST] /facturas/listado
```
`Request`
```JSON
{
"cantidad": number,
"offset": number,
"matricula": "string",
"desde": "string",
"hasta": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"resultados": [
{
"fecha_prest": "string",
"tipo": "string",
"planilla": "string",
"matricula": "string",
"nro_aut": "string",
"ooss": "string",
"nro_fact_intern": "string",
"fecha": "string",
"porcentaje": "string",
"codigos": "string",[] <- array de codigos
}
]
}
```
</details>
<details open>
**<summary>Archivo de facturas (CSV)</summary>**
<br/>
`Endpoint`
```
[POST] /facturas/resumen
```
`Request`
```JSON
{
"matricula": "string",
"desde": "string",
"hasta": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
</details>
### FACTURAS PENDIENTES
<details open>
**<summary>Listado facturas no presentadas</summary>**
<br/>
`Endpoint`
```
[POST] /facturas/pendientes/listado
```
`Request`
```JSON
{
"cantidad": number,
"offset": number,
"matricula": "string",
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"resultados": [
{
"fecha": "string",
"hon_gravados": number,
"hon_exentos": number,
"gas_gravados": number,
"gas_exentos": number,
"iva": number,
"total": number,
}
]
}
```
</details>
<details open>
**<summary>Archivo de resumen facturas no presentadas</summary>**
<br/>
`Endpoint`
```
[POST] /facturas/pendientes/resumen
```
`Request`
```JSON
{
"matricula": "string",
"formato": "PDF" | "CSV" | "EXCEL" -> depende cual acepte
}
```
`Response`
```JSON
{
"resultado": "OK" | "ERROR"
"mensaje": "string", -> opcional cuando ERROR
"archivo": "string", -> url al archivo
}
```
Clone repository
  • API Sector Privado
  • Especificacion servicios Centro Medico
  • Especificacion servicios SAMI
  • Home