POST API/V40/System/Session/LoginByRoom

Login guest by room number

Request Information

URI Parameters

None.

Body Parameters

The command parameters.

LoginGuestByRoomRequest
NameDescriptionTypeAdditional information
LastName

The guests last name.

string

Required

RoomNumber

The guests room number.

string

Required

SessionToken

The token associated with this session of API interactions. This token should always be included in API calls, because it contains important session state information.

string

Required

Request Formats

application/json, text/json

Sample:
{
  "lastName": "sample string 1",
  "roomNumber": "sample string 2",
  "sessionToken": "sample string 3"
}

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ResponseContainerModel
NameDescriptionTypeAdditional information
SessionToken

The token associated with this session of API interactions. Generally this is the same token passed with the API request parameters, but under certain circumstances this can be changed before being sent back to the caller.

string

ResponsesIncluded

A list of response messages names contained in this composite message, for easy pre-parsing.

string

Responses

A list of response messages contained in this composite message.

Collection of Object

Status

The success status the composite message.

CompositeStatus

Response Formats

application/json, text/json

Sample:
{
  "sessionToken": "vFTbEYZg3IgKAAAAAAAAAAAAAAA.PfdVId1kww4q4r1PRH1XKDCMlzboBg1zktwIK4F-IjQ",
  "responsesIncluded": "responseStatus",
  "responses": [
    {
      "responseStatus": {
        "succeeded": true
      }
    }
  ],
  "status": "Success"
}