Skip to content

Join Room

Send Request

Send a POST request to http://mc.miaaoo.com/join with the following request parameters:

  • version: Version number, currently 1.0.0
  • joininformation: An object containing room information
    • addid: Enter the ID of the friend you added (as mentioned in the room list section)
    • roomfrom: Value obtained from the room list section
    • roomid: Room UUID obtained from the room list section
    • sessionname: The name field from the sessionRef object obtained in the room list section
  • invitecontrol: An object containing invitation control information
    • userxuid: Your XUID (can be obtained from the XUID section)
    • verifycode: Invitation unlock code, which needs to be obtained by contacting customer support with your XUID

Request Body Example

{
    version: "1.0.0",
    joininformation: {
        addid: "1",
        roomfrom: "1",
        roomid: "1234567890",
        sessionname: "sessionname"
    },
    invitecontrol: {
        userxuid: "1234567890",
        verifycode: "123456"
    }
}

Tip

When the returned status code is 200, it indicates a successful request.