POST api/equipenavega/{equipeId}/avancar-etapa
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| equipeId | integer |
Required |
Body Parameters
AvancarEtapaRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| EtapaId | integer |
None. |
|
| Sucesso | boolean |
None. |
|
| Pontos | integer |
None. |
|
| Justificativa | string |
None. |
|
| JogadorId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"EtapaId": 1,
"Sucesso": true,
"Pontos": 3,
"Justificativa": "sample string 4",
"JogadorId": 1
}
application/xml, text/xml
Sample:
<AvancarEtapaRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GincanaGamification.Controllers"> <EtapaId>1</EtapaId> <JogadorId>1</JogadorId> <Justificativa>sample string 4</Justificativa> <Pontos>3</Pontos> <Sucesso>true</Sucesso> </AvancarEtapaRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.