POST api/Reclamos/createReclamo
Request Information
URI Parameters
None.
Body Parameters
reclamoCreateObjName | 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": "2024-11-28T07:23:39.6333456-05: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>2024-11-28T07:23:39.6333456-05:00</FechaSiniestro> </reclamoCreateObj>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EmpresaIDResponseName | 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>