POST api/Analisis/RechazarGestion
Request Information
URI Parameters
None.
Body Parameters
RecharzarGestionDto| Name | Description | Type | Additional information |
|---|---|---|---|
| GestionId | globally unique identifier |
None. |
|
| errores | Collection of string |
None. |
Request Formats
application/json, text/json
Sample:
{
"errores": [
"sample string 1",
"sample string 2"
],
"GestionId": "42eec7ac-2063-41c8-87e4-4fa940fd6b96"
}
text/xml
Sample:
<RecharzarGestionDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/">
<errores xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</errores>
<GestionId>42eec7ac-2063-41c8-87e4-4fa940fd6b96</GestionId>
</RecharzarGestionDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AppResult| Name | Description | Type | Additional information |
|---|---|---|---|
| IsValid | boolean |
None. |
|
| Message | Object |
None. |
|
| Data | Object |
None. |
|
| Exception | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsValid": true,
"Message": {},
"Data": {},
"Exception": {}
}
text/xml
Sample:
<AppResult xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/"> <Data /> <Exception /> <IsValid>true</IsValid> <Message /> </AppResult>