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

check in player

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:
{
  "checkInTypeOption": 0,
  "entityId": "sample string 1",
  "isAutomaticallyAddEligibleParticipants": true,
  "isAutomaticallyCreateAccounts": true,
  "isRequireWaiverWhenAdding": true,
  "isAcceptTerms": true,
  "isAddEligibleParticipants": true,
  "isCreateAccounts": true,
  "eventId": 8,
  "curUserId": "sample string 9",
  "isSSO": true,
  "requestHost": "sample string 11",
  "applicationPath": "sample string 12",
  "secureApplicationPath": "sample string 13",
  "absoluteApplicationPath": "sample string 14",
  "isHttps": true,
  "isMobileDevice": true,
  "clientType": 0,
  "clientVersion": "sample string 17",
  "clientOS": "sample string 18",
  "clientBuild": "sample string 19",
  "clientWidth": 20,
  "clientHeight": 21,
  "timezone": 22
}

application/xml, text/xml

Sample:
<CheckInPlayerInVO 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">21</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">20</ClientWidth>
  <absoluteApplicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 14</absoluteApplicationPath>
  <applicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 12</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 19</clientBuild>
  <clientOS xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 18</clientOS>
  <clientVersion xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 17</clientVersion>
  <curUserId xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 9</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 11</requestHost>
  <secureApplicationPath xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">sample string 13</secureApplicationPath>
  <timezone xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Input">22</timezone>
  <eventId>8</eventId>
  <CheckInTypeOption>ByMemberId</CheckInTypeOption>
  <EntityId>sample string 1</EntityId>
  <IsAcceptTerms>true</IsAcceptTerms>
  <IsAddEligibleParticipants>true</IsAddEligibleParticipants>
  <IsAutomaticallyAddEligibleParticipants>true</IsAutomaticallyAddEligibleParticipants>
  <IsAutomaticallyCreateAccounts>true</IsAutomaticallyCreateAccounts>
  <IsCreateAccounts>true</IsCreateAccounts>
  <IsRequireWaiverWhenAdding>true</IsRequireWaiverWhenAdding>
</CheckInPlayerInVO>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "playerIcon": {
    "memberName": "sample string 1",
    "memberLogo": "sample string 2",
    "isUseAvatar": true,
    "avatarBackgroundColor": "sample string 4",
    "avatarName": "sample string 5"
  },
  "id": "sample string 1",
  "name": "sample string 2"
}

application/xml, text/xml

Sample:
<CheckInPlayerOutVO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Member">
  <id xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Common">sample string 1</id>
  <name xmlns="http://schemas.datacontract.org/2004/07/imLeagues.Internal.API.VO.Output.Common">sample string 2</name>
  <PlayerIcon>
    <AvatarBackgroundColor>sample string 4</AvatarBackgroundColor>
    <AvatarName>sample string 5</AvatarName>
    <IsUseAvatar>true</IsUseAvatar>
    <MemberLogo>sample string 2</MemberLogo>
    <MemberName>sample string 1</MemberName>
  </PlayerIcon>
</CheckInPlayerOutVO>