POST api/ClassTracker/SaveTrackedClass
Request Information
URI Parameters
None.
Body Parameters
PersonTrackedClass| Name | Description | Type | Additional information |
|---|---|---|---|
| TrackedClassID | integer |
None. |
|
| PersonID | integer |
None. |
|
| HorseShowID | integer |
None. |
|
| ClassID | integer |
None. |
|
| ClassNumber | string |
None. |
|
| ClassName | string |
None. |
|
| Location | string |
None. |
|
| EstimatedStartTime | date |
None. |
|
| Placing | string |
None. |
|
| Status | string |
None. |
|
| IsManualEntry | boolean |
None. |
|
| CreatedDate | date |
None. |
|
| LastUpdatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"TrackedClassID": 1,
"PersonID": 2,
"HorseShowID": 3,
"ClassID": 1,
"ClassNumber": "sample string 4",
"ClassName": "sample string 5",
"Location": "sample string 6",
"EstimatedStartTime": "2026-08-04T13:53:00.5436516-07:00",
"Placing": "sample string 7",
"Status": "sample string 8",
"IsManualEntry": true,
"CreatedDate": "2026-08-04T13:53:00.5436516-07:00",
"LastUpdatedDate": "2026-08-04T13:53:00.5436516-07:00"
}
application/xml, text/xml
Sample:
<PersonTrackedClass xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Equestrian.Entities"> <ClassID>1</ClassID> <ClassName>sample string 5</ClassName> <ClassNumber>sample string 4</ClassNumber> <CreatedDate>2026-08-04T13:53:00.5436516-07:00</CreatedDate> <EstimatedStartTime>2026-08-04T13:53:00.5436516-07:00</EstimatedStartTime> <HorseShowID>3</HorseShowID> <IsManualEntry>true</IsManualEntry> <LastUpdatedDate>2026-08-04T13:53:00.5436516-07:00</LastUpdatedDate> <Location>sample string 6</Location> <PersonID>2</PersonID> <Placing>sample string 7</Placing> <Status>sample string 8</Status> <TrackedClassID>1</TrackedClassID> </PersonTrackedClass>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.