POST api/hotel/IdentificaCliente
Request Information
URI Parameters
None.
Body Parameters
AutenticaHospedeVM| Name | Description | Type | Additional information |
|---|---|---|---|
| IdContaAcesso | integer |
None. |
|
| CodigoAcomodacao | string |
None. |
|
| IdAcomodacao | integer |
None. |
|
| CPF | string |
None. |
|
| DataNasc | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"IdContaAcesso": 1,
"CodigoAcomodacao": "sample string 2",
"IdAcomodacao": 3,
"CPF": "sample string 4",
"DataNasc": "2026-03-03T21:33:59.4742791-03:00"
}
Response Information
Resource Description
DadosHospedeVM| Name | Description | Type | Additional information |
|---|---|---|---|
| IdSaida | integer |
None. |
|
| IdMov | integer |
None. |
|
| IdItem | integer |
None. |
|
| Nome | string |
None. |
|
| Hospedes | Collection of HospedeVM |
None. |
Response Formats
application/json, text/json
Sample:
{
"IdSaida": 1,
"IdMov": 2,
"IdItem": 3,
"Nome": "sample string 4",
"Hospedes": [
{
"ID": 1,
"Nome": "sample string 2"
},
{
"ID": 1,
"Nome": "sample string 2"
}
]
}