POST api/ReintegrosApi/ObtenerPrestador

Request Information

URI Parameters

None.

Body Parameters

ReintegrosParam
NameDescriptionTypeAdditional information
FechaSolicitudDesde

date

None.

FechaSolicitudHasta

date

None.

CUIT

string

None.

EmpresaId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "FechaSolicitudDesde": "2025-12-06T02:01:24.264-03:00",
  "FechaSolicitudHasta": "2025-12-06T02:01:24.264-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/ReintegrosWeb.Models">
  <CUIT>sample string 1</CUIT>
  <EmpresaId>2</EmpresaId>
  <FechaSolicitudDesde>2025-12-06T02:01:24.264643-03:00</FechaSolicitudDesde>
  <FechaSolicitudHasta>2025-12-06T02:01:24.264643-03:00</FechaSolicitudHasta>
</ReintegrosParam>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ReintegrosParam'.

Response Information

Resource Description

AuditoriaPrestadores
NameDescriptionTypeAdditional information
PrestadorId

integer

None.

EmpresaId

integer

None.

CUIT

string

None.

Nombre

string

None.

ObjectState

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "PrestadorId": 1,
  "EmpresaId": 1,
  "CUIT": "sample string 2",
  "Nombre": "sample string 3",
  "ObjectState": 4
}

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">4</ObjectState>
  <CUIT>sample string 2</CUIT>
  <EmpresaId>1</EmpresaId>
  <Nombre>sample string 3</Nombre>
  <PrestadorId>1</PrestadorId>
</AuditoriaPrestadores>