POST api/TrackerService/GetWorkoutSectionsForTeam

Request Information

URI Parameters

None.

Body Parameters

TrackerContextAndOfApi_GetWorkoutSectionsForTeam
NameDescriptionTypeAdditional information
TrackerContext

TrackerContext

None.

Data

Api_GetWorkoutSectionsForTeam

None.

Request Formats

application/json, text/json

Sample:
{
  "TrackerContext": {
    "OrganizationTrackerId": "sample string 1",
    "TrackerId": "sample string 2",
    "InCacheMode": true,
    "CacheImagePath": "sample string 4"
  },
  "Data": {
    "TeamId": 1,
    "IncludeDeleted": true
  }
}

application/xml, text/xml

Sample:
<TrackerContextAndOfApi_GetWorkoutSectionsForTeamJcLlkay9 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RedV.EliteForm.DataContracts.Tracker">
  <Data>
    <IncludeDeleted>true</IncludeDeleted>
    <TeamId>1</TeamId>
  </Data>
  <TrackerContext>
    <CacheImagePath>sample string 4</CacheImagePath>
    <InCacheMode>true</InCacheMode>
    <OrganizationTrackerId>sample string 1</OrganizationTrackerId>
    <TrackerId>sample string 2</TrackerId>
  </TrackerContext>
</TrackerContextAndOfApi_GetWorkoutSectionsForTeamJcLlkay9>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of TrackerUIWorkoutSection
NameDescriptionTypeAdditional information
Id

integer

None.

WorkoutSectionId

integer

None.

Name

string

None.

TeamId

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "WorkoutSectionId": 2,
    "Name": "sample string 3",
    "TeamId": 4
  },
  {
    "Id": 1,
    "WorkoutSectionId": 2,
    "Name": "sample string 3",
    "TeamId": 4
  }
]

application/xml, text/xml

Sample:
<ArrayOfTrackerUIWorkoutSection xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RedV.EliteForm.DataContracts.Tracker">
  <TrackerUIWorkoutSection>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <TeamId>4</TeamId>
    <WorkoutSectionId>2</WorkoutSectionId>
  </TrackerUIWorkoutSection>
  <TrackerUIWorkoutSection>
    <Id>1</Id>
    <Name>sample string 3</Name>
    <TeamId>4</TeamId>
    <WorkoutSectionId>2</WorkoutSectionId>
  </TrackerUIWorkoutSection>
</ArrayOfTrackerUIWorkoutSection>