PUT v1/crawlevents/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
Body Parameters
CrawlEventResource| Name | Description | Type | Additional information |
|---|---|---|---|
| CrawlEvent | CrawlEventDto |
None. |
Request Formats
application/json, text/json
Sample:
{
"crawlEvent": {
"id": 1,
"channel": 2,
"start": "2025-10-31T23:35:31.5935875-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">
<CrawlEvent>
<Channel>2</Channel>
<Deleted>true</Deleted>
<Id>1</Id>
<Length>4</Length>
<Start>2025-10-31T23:35:31.5935875-04:00</Start>
<Text>sample string 5</Text>
</CrawlEvent>
</Resources>
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |