Update custom event by UUID
PUT/api/v1/catalog/:tagOrId/custom-events/:uuid
Update custom event by UUID
Request
Path Parameters
The tag (x-cortex-tag
) or unique, auto-generated identifier for the entity.
- application/json
Body
required
customData
object
Optional property to store additional data
Optional description of custom event
Time when event occurred
Name for custom event
Type of custom event
Optional URL associated with custom event
Responses
- 200
- 400
- 404
Successfully updated custom event
- application/json
- Schema
- Example (from schema)
Schema
customData
object
Optional property to store additional data
Optional description of custom event
Time when event occurred
Name for custom event
Type of custom event
Optional URL associated with custom event
Automatically generated identifier
{
"customData": {},
"description": "string",
"timestamp": "2024-07-29T15:51:28.071Z",
"title": "Created K8s pod",
"type": "POD_CREATION",
"url": "https://cortex.io",
"uuid": "d853c6e0-1bca-40bf-a264-db5d4ee38d77"
}
Bad Request
- application/json
- Schema
- Example (from schema)
Schema
customData
object
Optional property to store additional data
Optional description of custom event
Time when event occurred
Name for custom event
Type of custom event
Optional URL associated with custom event
Automatically generated identifier
{
"customData": {},
"description": "string",
"timestamp": "2024-07-29T15:51:28.071Z",
"title": "Created K8s pod",
"type": "POD_CREATION",
"url": "https://cortex.io",
"uuid": "d853c6e0-1bca-40bf-a264-db5d4ee38d77"
}
Entity or custom event not found
- application/json
- Schema
- Example (from schema)
Schema
customData
object
Optional property to store additional data
Optional description of custom event
Time when event occurred
Name for custom event
Type of custom event
Optional URL associated with custom event
Automatically generated identifier
{
"customData": {},
"description": "string",
"timestamp": "2024-07-29T15:51:28.071Z",
"title": "Created K8s pod",
"type": "POD_CREATION",
"url": "https://cortex.io",
"uuid": "d853c6e0-1bca-40bf-a264-db5d4ee38d77"
}