POST api/Reclamos/createReclamo
Request Information
URI Parameters
None.
Body Parameters
reclamoCreateObj| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpresaID | integer |
None. |
|
| ControlVehicular | string |
None. |
|
| FechaSiniestro | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmpresaID": 1,
"ControlVehicular": "sample string 2",
"FechaSiniestro": "2025-10-29T15:27:36.0798683-04:00"
}
application/xml, text/xml
Sample:
<reclamoCreateObj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models"> <ControlVehicular>sample string 2</ControlVehicular> <EmpresaID>1</EmpresaID> <FechaSiniestro>2025-10-29T15:27:36.0798683-04:00</FechaSiniestro> </reclamoCreateObj>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EmpresaIDResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| EmpresaID | integer |
None. |
|
| status | integer |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"EmpresaID": 1,
"status": 2,
"message": "sample string 3"
}
application/xml, text/xml
Sample:
<EmpresaIDResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/EXPU_Backend.Models"> <message>sample string 3</message> <status>2</status> <EmpresaID>1</EmpresaID> </EmpresaIDResponse>