Reads raw data for an event by UUID
GET/accounts/{account_id}/cloudforce-one/events/raw/{dataset_id}/{event_id}
Retrieves the raw data associated with an event. Searches across all shards in the dataset.
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Path Parameters
Reads raw data for an event by UUID
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/cloudforce-one/events/raw/$DATASET_ID/$EVENT_ID \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN"{
"id": 1,
"accountId": 1234,
"created": "1970-01-01T00:00:00.000Z",
"data": "{\"foo\": \"bar\"}",
"source": "https://example.com",
"tlp": "amber"
}Returns Examples
{
"id": 1,
"accountId": 1234,
"created": "1970-01-01T00:00:00.000Z",
"data": "{\"foo\": \"bar\"}",
"source": "https://example.com",
"tlp": "amber"
}