POST api/reporte
Request Information
URI Parameters
None.
Body Parameters
ReporteRequestName | Description | Type | Additional information |
---|---|---|---|
idHallazgo | integer |
None. |
|
idDevolucion | integer |
None. |
|
fechaRegIni | date |
None. |
|
fechaRegFin | date |
None. |
|
tipo | integer |
None. |
|
materiales | Collection of Material |
None. |
Request Formats
application/json, text/json
Sample:
{ "idHallazgo": 1, "idDevolucion": 2, "fechaRegIni": "2024-10-31T16:30:23.8195887-05:00", "fechaRegFin": "2024-10-31T16:30:23.8195887-05:00", "tipo": 5, "materiales": [ { "id": 1, "descripcion": "sample string 2" }, { "id": 1, "descripcion": "sample string 2" } ] }
application/xml, text/xml
Sample:
<ReporteRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APICalidadHD.Models"> <FechaRegFin>2024-10-31T16:30:23.8195887-05:00</FechaRegFin> <FechaRegIni>2024-10-31T16:30:23.8195887-05:00</FechaRegIni> <IdDevolucion>2</IdDevolucion> <IdHallazgo>1</IdHallazgo> <Materiales> <Material> <Descripcion>sample string 2</Descripcion> <Id>1</Id> </Material> <Material> <Descripcion>sample string 2</Descripcion> <Id>1</Id> </Material> </Materiales> <tipo>5</tipo> </ReporteRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessageName | Description | Type | Additional information |
---|---|---|---|
Version | Version |
None. |
|
Content | HttpContent |
None. |
|
StatusCode | HttpStatusCode |
None. |
|
ReasonPhrase | string |
None. |
|
Headers | Collection of Object |
None. |
|
RequestMessage | HttpRequestMessage |
None. |
|
IsSuccessStatusCode | boolean |
None. |