POST v3/fitness/{networkId}/session/movewaitlistmember

move waitlist member into session

Request Information

Parameters

NameDescriptionAdditional information
inVO

Define this parameter in the request body.

networkId
No documentation available.

Define this parameter in the request URI.

Request body formats

application/json, text/json

Sample:
{
  "memberId": "sample string 1",
  "eventId": 2,
  "curUserId": "sample string 3",
  "isSSO": true,
  "requestHost": "sample string 5",
  "applicationPath": "sample string 6",
  "secureApplicationPath": "sample string 7",
  "absoluteApplicationPath": "sample string 8",
  "isHttps": true,
  "isMobileDevice": true,
  "clientType": 0,
  "clientVersion": "sample string 11",
  "clientOS": "sample string 12",
  "clientBuild": "sample string 13",
  "clientWidth": 14,
  "clientHeight": 15,
  "timezone": 16
}

application/xml, text/xml

Sample:
<EventMemberInVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input.Fitness">
  <ClientHeight xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">15</ClientHeight>
  <ClientType xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">Site</ClientType>
  <ClientWidth xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">14</ClientWidth>
  <absoluteApplicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 8</absoluteApplicationPath>
  <applicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 6</applicationPath>
  <cachedKey xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 1</cachedKey>
  <clientBuild xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 13</clientBuild>
  <clientOS xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 12</clientOS>
  <clientVersion xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 11</clientVersion>
  <curUserId xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 3</curUserId>
  <isHttps xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">true</isHttps>
  <isMobileDevice xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">true</isMobileDevice>
  <isSSO xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">true</isSSO>
  <requestHost xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 5</requestHost>
  <secureApplicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 7</secureApplicationPath>
  <timezone xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">16</timezone>
  <eventId>2</eventId>
  <memberId>sample string 1</memberId>
</EventMemberInVO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "movedParticipant": {
    "id": 1,
    "memberId": "sample string 2",
    "name": "sample string 3",
    "photo": "sample string 4",
    "joinedDate": "sample string 5",
    "waiver": "sample string 6",
    "isAttended": true,
    "isClassPaid": true,
    "isEventPaid": true,
    "isUseAvatar": true,
    "avatarBackgroundColor": "sample string 11",
    "avatarName": "sample string 12",
    "placeOrderId": "sample string 13",
    "pureName": "sample string 14"
  }
}

application/xml, text/xml

Sample:
<MoveParticipantOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Fitness">
  <MovedParticipant>
    <AvatarBackgroundColor>sample string 11</AvatarBackgroundColor>
    <AvatarName>sample string 12</AvatarName>
    <IsUseAvatar>true</IsUseAvatar>
    <PlaceOrderId>sample string 13</PlaceOrderId>
    <PureName>sample string 14</PureName>
    <id>1</id>
    <isAttended>true</isAttended>
    <isClassPaid>true</isClassPaid>
    <isEventPaid>true</isEventPaid>
    <joinedDate>sample string 5</joinedDate>
    <memberId>sample string 2</memberId>
    <name>sample string 3</name>
    <photo>sample string 4</photo>
    <waiver>sample string 6</waiver>
  </MovedParticipant>
</MoveParticipantOutVO>