Check In to a Meeting

Check in to an upcoming meeting.

Request URL

POST {base_url}/services/openapi/v1.0/room/check_in

Request parameters

Body parameters
Parameter Required Type Description
memberId Yes Long The member ID of the user that has the permission to check in.
Note: You can query the user's member ID using the Query Multiple Users interface.
roomId Yes Long The meeting room ID where the meeting is booked.
Note: You can query the meeting ID using the Query Multiple Meetings interface.

Response parameters

Parameter Type Description
data Object <Details> The detailed information.
status String The result of the request.
  • Success
  • Failed
requestId String The ID of the request, which can be used to quickly locate the request.
Details
Parameter Type Description
meetingId Integer Meeting ID.
meetingStatus String Meeting status.
  • STARTED: The meeting is started.

Example

Request example

Check in to an upcoming meeting that is booked in a specific meeting room (ID: 2863).
POST /services/openapi/v1.0/room/check_in HTTP/1.1
Host: workplace.yeastar.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJncmFudF90eXBlIjoiY2xpZW50X2NyZWRlbnRpYWxzIiwic2NvcGUiOlsiL29wZW5hcGkvIl0sImVudGVycHJpc2VfaWQiOjEwMDQzMywicmVnaW9uIjoiR0wiLCJhdXRob3JpdGllcyI6WyJST0xFX0NMSUVOVCJdLCJqdGkiOiI3N2E5YzdiYy0wYmE5LTQzNmItOTBiYi02YmFmOWM1MGNhYTAiLCJjbGllbnRfaWQiOiI3OTU2OGFhMC0wYjBkLTQyZjYtOGRiNC03OWExNmQ3MzQ3MmEiLCJ0cyI6MTY5MDA5NDUxOSwiZXhwX2luIjo4NjQwMH0.fAYARyJuNqQdzpiQqDnRjFRC1zDMtRqYKH78iEfhItI
Content-Type: application/json

{
    "memberId": 466,
    "roomId": 2863
}
Response example
HTTP/1.1 200 OK
{
    "data": {
        "meetingId": "WzEsNzM5NTgsMjMxNzUsMTY5MDE4MDUwMCwwXQ",
        "meetingStatus": "STARTED"
    },
    "status": "Success",
    "requestId": "8cc45b6db8607a70eb28fd9ad318a8bd"
}