POST API/AgendServManter/ExcluirAnexo?agendServAnexId={agendServAnexId}
Exclui anexo.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| agendServAnexId |
Id do anexo. |
decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
WilsonSons.Terminais.WSNegocio.API.Models.ManterAgendServModel+Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Mensagem |
Mensagem de retorno (alertas, erros e etc). |
string |
None. |
| Mensagens |
Lista completa de mensagens / erros e etc. |
Collection of string |
None. |
| Sucesso |
Indica o sucesso. |
boolean |
None. |
| AgendServId |
Retorna o Id do Agendamento de Serviço. |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Mensagem": "sample string 1",
"Mensagens": [
"sample string 1",
"sample string 2"
],
"Sucesso": true,
"AgendServId": 3.0
}
application/xml, text/xml
Sample:
<ManterAgendServModel.Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WilsonSons.Terminais.WSNegocio.API.Models">
<AgendServId>3</AgendServId>
<Mensagem>sample string 1</Mensagem>
<Mensagens xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:string>sample string 1</d2p1:string>
<d2p1:string>sample string 2</d2p1:string>
</Mensagens>
<Sucesso>true</Sucesso>
</ManterAgendServModel.Result>