GET api/HorseShowPro/GetActiveShowChatsByPersonID?personID={personID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| personID | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of ActiveShowChat| Name | Description | Type | Additional information |
|---|---|---|---|
| HorseShowID | integer |
None. |
|
| OrgID | integer |
None. |
|
| PersonID | integer |
None. |
|
| ShowName | string |
None. |
|
| ShowStart | date |
None. |
|
| ShowEnd | date |
None. |
|
| OrgName | string |
None. |
|
| HorseShowPhotoID | integer |
None. |
|
| OrganizationPhotoID | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"HorseShowID": 1,
"OrgID": 2,
"PersonID": 3,
"ShowName": "sample string 4",
"ShowStart": "2026-08-04T13:52:55.0215675-07:00",
"ShowEnd": "2026-08-04T13:52:55.0215675-07:00",
"OrgName": "sample string 5",
"HorseShowPhotoID": 1,
"OrganizationPhotoID": 1
},
{
"HorseShowID": 1,
"OrgID": 2,
"PersonID": 3,
"ShowName": "sample string 4",
"ShowStart": "2026-08-04T13:52:55.0215675-07:00",
"ShowEnd": "2026-08-04T13:52:55.0215675-07:00",
"OrgName": "sample string 5",
"HorseShowPhotoID": 1,
"OrganizationPhotoID": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfActiveShowChat xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Equestrian.Entities">
<ActiveShowChat>
<HorseShowID>1</HorseShowID>
<HorseShowPhotoID>1</HorseShowPhotoID>
<OrgID>2</OrgID>
<OrgName>sample string 5</OrgName>
<OrganizationPhotoID>1</OrganizationPhotoID>
<PersonID>3</PersonID>
<ShowEnd>2026-08-04T13:52:55.0215675-07:00</ShowEnd>
<ShowName>sample string 4</ShowName>
<ShowStart>2026-08-04T13:52:55.0215675-07:00</ShowStart>
</ActiveShowChat>
<ActiveShowChat>
<HorseShowID>1</HorseShowID>
<HorseShowPhotoID>1</HorseShowPhotoID>
<OrgID>2</OrgID>
<OrgName>sample string 5</OrgName>
<OrganizationPhotoID>1</OrganizationPhotoID>
<PersonID>3</PersonID>
<ShowEnd>2026-08-04T13:52:55.0215675-07:00</ShowEnd>
<ShowName>sample string 4</ShowName>
<ShowStart>2026-08-04T13:52:55.0215675-07:00</ShowStart>
</ActiveShowChat>
</ArrayOfActiveShowChat>