POST v1/crawlevents/batch
Request Information
URI Parameters
None.
Body Parameters
CrawlEventsResourceName | Description | Type | Additional information |
---|---|---|---|
CrawlEvents | Collection of CrawlEventDto |
None. |
Request Formats
application/json, text/json
Sample:
{ "crawlEvents": [ { "id": 1, "channel": 2, "start": "2025-05-23T17:09:00.3238061-04:00", "length": 4, "text": "sample string 5", "deleted": true }, { "id": 1, "channel": 2, "start": "2025-05-23T17:09:00.3238061-04: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"> <CrawlEvents> <CrawlEvent> <Channel>2</Channel> <Deleted>true</Deleted> <Id>1</Id> <Length>4</Length> <Start>2025-05-23T17:09:00.3238061-04:00</Start> <Text>sample string 5</Text> </CrawlEvent> <CrawlEvent> <Channel>2</Channel> <Deleted>true</Deleted> <Id>1</Id> <Length>4</Length> <Start>2025-05-23T17:09:00.3238061-04:00</Start> <Text>sample string 5</Text> </CrawlEvent> </CrawlEvents> </Resources>
Response Information
Resource Description
CrawlEventsResourceName | Description | Type | Additional information |
---|---|---|---|
CrawlEvents | Collection of CrawlEventDto |
None. |
Response Formats
application/json, text/json
Sample:
{ "crawlEvents": [ { "id": 1, "channel": 2, "start": "2025-05-23T17:09:00.3318-04:00", "length": 4, "text": "sample string 5", "deleted": true }, { "id": 1, "channel": 2, "start": "2025-05-23T17:09:00.3318-04: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"> <CrawlEvents> <CrawlEvent> <Channel>2</Channel> <Deleted>true</Deleted> <Id>1</Id> <Length>4</Length> <Start>2025-05-23T17:09:00.3318-04:00</Start> <Text>sample string 5</Text> </CrawlEvent> <CrawlEvent> <Channel>2</Channel> <Deleted>true</Deleted> <Id>1</Id> <Length>4</Length> <Start>2025-05-23T17:09:00.3318-04:00</Start> <Text>sample string 5</Text> </CrawlEvent> </CrawlEvents> </Resources>