POST Api/Poll/Delete?idPoll={idPoll}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| idPoll | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
AddQuizResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success |
La solicitud se realizo correctamente |
boolean |
None. |
| error |
Error arrojado por la API |
string |
None. |
| idQuiz | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true,
"error": "sample string 2",
"idQuiz": 3
}
application/xml, text/xml
Sample:
<AddQuizResponse xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <success>true</success> <error>sample string 2</error> <idQuiz>3</idQuiz> </AddQuizResponse>