GET api/ReferralDirectory/ProviderVideo/{videoID}
Get provider videos for the Referral Directory App
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| videoID |
Video ID |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ProviderVideo| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| Title | string |
None. |
|
| PublishDate | date |
None. |
|
| VideoUrl | string |
None. |
|
| Summary | string |
None. |
|
| Transcript | string |
None. |
|
| PageUrl | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ID": 1,
"Title": "sample string 2",
"PublishDate": "2025-12-06T13:36:03.5983905-06:00",
"VideoUrl": "sample string 4",
"Summary": "sample string 5",
"Transcript": "sample string 6",
"PageUrl": null
}
application/xml, text/xml
Sample:
<ProviderVideo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/iowaclinic_api.API"> <ID>1</ID> <PublishDate>2025-12-06T13:36:03.5983905-06:00</PublishDate> <Summary>sample string 5</Summary> <Title>sample string 2</Title> <Transcript>sample string 6</Transcript> <VideoUrl>sample string 4</VideoUrl> </ProviderVideo>