PUT v1/crawlevents/batch

Request Information

URI Parameters

None.

Body Parameters

CrawlEventsResource
NameDescriptionTypeAdditional information
CrawlEvents

Collection of CrawlEventDto

None.

Request Formats

application/json, text/json

Sample:
{
  "crawlEvents": [
    {
      "id": 1,
      "channel": 2,
      "start": "2025-05-23T17:13:33.9610453-04:00",
      "length": 4,
      "text": "sample string 5",
      "deleted": true
    },
    {
      "id": 1,
      "channel": 2,
      "start": "2025-05-23T17:13:33.9610453-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:13:33.9610453-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:13:33.9610453-04:00</Start>
      <Text>sample string 5</Text>
    </CrawlEvent>
  </CrawlEvents>
</Resources>

Response Information

Resource Description

CrawlEventsResource
NameDescriptionTypeAdditional information
CrawlEvents

Collection of CrawlEventDto

None.

Response Formats

application/json, text/json

Sample:
{
  "crawlEvents": [
    {
      "id": 1,
      "channel": 2,
      "start": "2025-05-23T17:13:33.9620626-04:00",
      "length": 4,
      "text": "sample string 5",
      "deleted": true
    },
    {
      "id": 1,
      "channel": 2,
      "start": "2025-05-23T17:13:33.9620626-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:13:33.9620626-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:13:33.9620626-04:00</Start>
      <Text>sample string 5</Text>
    </CrawlEvent>
  </CrawlEvents>
</Resources>