GET v1/crawlevents/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CrawlEventResource| Name | Description | Type | Additional information |
|---|---|---|---|
| CrawlEvent | CrawlEventDto |
None. |
Response Formats
application/json, text/json
Sample:
{
"crawlEvent": {
"id": 1,
"channel": 2,
"start": "2025-12-19T07:13:30.4816025-05:00",
"length": 4,
"text": "sample string 5",
"deleted": true
}
}
application/xml, text/xml
Sample:
<Resources xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CablecastAPI.DTOs">
<CrawlEvent>
<Channel>2</Channel>
<Deleted>true</Deleted>
<Id>1</Id>
<Length>4</Length>
<Start>2025-12-19T07:13:30.4816025-05:00</Start>
<Text>sample string 5</Text>
</CrawlEvent>
</Resources>