POST api/ReintegrosApi/ObtenerPrestador
Request Information
URI Parameters
None.
Body Parameters
ReintegrosParam| Name | Description | Type | Additional information |
|---|---|---|---|
| FechaSolicitudDesde | date |
None. |
|
| FechaSolicitudHasta | date |
None. |
|
| CUIT | string |
None. |
|
| EmpresaId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"FechaSolicitudDesde": "2026-09-21T17:37:01.637-03:00",
"FechaSolicitudHasta": "2026-09-21T17:37:01.637-03:00",
"CUIT": "sample string 1",
"EmpresaId": 2
}
application/xml, text/xml
Sample:
<ReintegrosParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ReintegrosApi.Models"> <CUIT>sample string 1</CUIT> <EmpresaId>2</EmpresaId> <FechaSolicitudDesde>2026-09-21T17:37:01.6379639-03:00</FechaSolicitudDesde> <FechaSolicitudHasta>2026-09-21T17:37:01.6379639-03:00</FechaSolicitudHasta> </ReintegrosParam>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
AuditoriaPrestadores| Name | Description | Type | Additional information |
|---|---|---|---|
| PrestadorId | integer |
None. |
|
| EmpresaId | integer |
None. |
|
| CUIT | string |
None. |
|
| Nombre | string |
None. |
|
| Observaciones | string |
None. |
|
| Habilitado | boolean |
None. |
|
| ObjectState | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"PrestadorId": 1,
"EmpresaId": 1,
"CUIT": "sample string 2",
"Nombre": "sample string 3",
"Observaciones": "sample string 4",
"Habilitado": true,
"ObjectState": 5
}
application/xml, text/xml
Sample:
<AuditoriaPrestadores xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.Reintegros.Entities"> <ObjectState xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.Framework.Interfaces">5</ObjectState> <CUIT>sample string 2</CUIT> <EmpresaId>1</EmpresaId> <Habilitado>true</Habilitado> <Nombre>sample string 3</Nombre> <Observaciones>sample string 4</Observaciones> <PrestadorId>1</PrestadorId> </AuditoriaPrestadores>