|
|
|
### VALIDACION DE PROFESIONALES
|
|
|
|
|
|
|
|
###### Endpoint
|
|
|
|
|
|
|
|
`[POST] /validar/prestador`
|
|
|
|
|
|
|
|
<details><summary>Request</summary>
|
|
|
|
|
|
|
|
###### Request
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ | ------ |
|
|
|
|
| matricula | string | | * |
|
|
|
|
| convenio | string | Tabla del CM | * |
|
|
|
|
| tipo | enum | **E**: Efector, **S**: Solicitante, **F**: Facturacion |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
<details><summary>Response</summary>
|
|
|
|
|
|
|
|
###### Response
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. |
|
|
|
|
| ------ | ------ |------ |
|
|
|
|
| nombre | string | |
|
|
|
|
| matricula | string | |
|
|
|
|
| cuit | string | |
|
|
|
|
| convenio | string | Tabla del CM |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
### VALIDACION DE PRESTACIONES
|
|
|
|
|
|
|
|
###### Endpoint
|
|
|
|
|
|
|
|
`[POST] /validar/prestacion`
|
|
|
|
|
|
|
|
<details><summary>Request</summary>
|
|
|
|
|
|
|
|
###### Request
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ | ------ |
|
|
|
|
| codigo | string | | * |
|
|
|
|
| cantidad | number | | |
|
|
|
|
| convenio | string | Tabla del CM | * |
|
|
|
|
| credencial | string | Credencial del socio | |
|
|
|
|
| matricula_efector | string | | |
|
|
|
|
| matricula_solicitante | string | | |
|
|
|
|
| matricula_facturacion | string | | |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
<details><summary>Response</summary>
|
|
|
|
|
|
|
|
###### Response
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. |
|
|
|
|
| ------ | ------ |------ |
|
|
|
|
| codigo | string | |
|
|
|
|
| descripcion | string | |
|
|
|
|
| cantidad | number | |
|
|
|
|
| precio | number | |
|
|
|
|
| importe | number | |
|
|
|
|
| convenio | string | |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
### VALIDACION PREVIA A AUTORIZAR
|
|
|
|
|
|
|
|
###### Endpoint
|
|
|
|
|
|
|
|
`[POST] /validar`
|
|
|
|
|
|
|
|
<details><summary>Request</summary>
|
|
|
|
|
|
|
|
###### Request
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ | ------ | ------ |
|
|
|
|
| id | uuid(36) | ID en el CA | * |
|
|
|
|
| estado | string | **pending** | * |
|
|
|
|
| convenio | string | Tabla del CM | * |
|
|
|
|
| socio | object | Objeto Socio | * |
|
|
|
|
| efector | object | Objeto Prestador | * |
|
|
|
|
| facturacion | object | Objeto Prestador | |
|
|
|
|
| solicitante | object | Objeto Prestador | |
|
|
|
|
| prestaciones | array | Lista de objetos Prestacion | * |
|
|
|
|
|
|
|
|
###### Socio
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ | ------ |
|
|
|
|
| credencial | string | | * |
|
|
|
|
| nombre | string | |
|
|
|
|
| plan | string | |
|
|
|
|
|
|
|
|
###### Profesional
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ | ------ |
|
|
|
|
| nombre | string | | |
|
|
|
|
| matricula | string | | * |
|
|
|
|
| cuit | string | | |
|
|
|
|
|
|
|
|
###### Prestacion
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ | ------ |
|
|
|
|
| codigo | string | | * |
|
|
|
|
| descripcion | string | | |
|
|
|
|
| cantidad | number | | * |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details><summary>Response</summary>
|
|
|
|
|
|
|
|
###### Response
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. |
|
|
|
|
| ------ | ------ |------ |
|
|
|
|
| referencia | string | Referencia en el CM |
|
|
|
|
| permite_planilla | S,N | **S**: SI, **N**: NO |
|
|
|
|
| permite_recetario | S,N | **S**: SI, **N**: NO |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
### CONFIRMACION DE AUTORIZACION
|
|
|
|
|
|
|
|
###### Endpoint
|
|
|
|
|
|
|
|
`[POST] /confirmar`
|
|
|
|
|
|
|
|
<details><summary>Request</summary>
|
|
|
|
|
|
|
|
###### Request
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. | Requerido |
|
|
|
|
| ------ | ------ |------ |------ |
|
|
|
|
| id | uuid(36) | ID en el CA | * |
|
|
|
|
| referencia | string | ID en el CM | * |
|
|
|
|
| referencia_convenio | string | Ref. en el Convenio (si existe) | |
|
|
|
|
| convenio | string | Tabla del CM | * |
|
|
|
|
| estado | string | Estado actual de la autorizacion | * |
|
|
|
|
|
|
|
|
</details>
|
|
|
|
|
|
|
|
<details><summary>Response</summary>
|
|
|
|
|
|
|
|
###### Response
|
|
|
|
|
|
|
|
| Propiedad | Tipo | Desc. |
|
|
|
|
| ------ | ------ |------ |
|
|
|
|
| autorizacion | string | Nº de autorizacion |
|
|
|
|
|
|
|
|
</details> |
|
|
|
\ No newline at end of file |