GET API/AgendCntrConsulta/VerificarEdicaoAgendamento/{agendId}
Verifica se um agendamento pode ser alterado.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| agendId |
Id do agendamento. |
decimal number |
Required |
Body Parameters
None.
Response Information
Resource Description
Models.ComprovAgendCntrModel
WilsonSons.Terminais.WSNegocio.Negocio.Core.AgendCntr+Result| Name | Description | Type | Additional information |
|---|---|---|---|
| Sucesso | boolean |
None. |
|
| Mensagem | string |
None. |
|
| AgendId | decimal number |
None. |
|
| MotoristaSemBiometria | boolean |
None. |
|
| MensagemMotoristaSemBiometria | string |
None. |
|
| bPossuiMonitoramento | boolean |
None. |
|
| AgendMonitoramentoID | decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"Sucesso": true,
"Mensagem": "sample string 2",
"AgendId": 3.0,
"MotoristaSemBiometria": true,
"MensagemMotoristaSemBiometria": "sample string 5",
"bPossuiMonitoramento": true,
"AgendMonitoramentoID": 7.0
}
application/xml, text/xml
Sample:
<AgendCntr.Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WilsonSons.Terminais.WSNegocio.Negocio.Core"> <AgendId>3</AgendId> <AgendMonitoramentoID>7</AgendMonitoramentoID> <Mensagem>sample string 2</Mensagem> <MensagemMotoristaSemBiometria>sample string 5</MensagemMotoristaSemBiometria> <MotoristaSemBiometria>true</MotoristaSemBiometria> <Sucesso>true</Sucesso> <bPossuiMonitoramento>true</bPossuiMonitoramento> </AgendCntr.Result>