Reads data for a raw event
cloudforce_one.threat_events.raw.get(strraw_id, RawGetParams**kwargs) -> RawGetResponse
GET/accounts/{account_id}/cloudforce-one/events/{event_id}/raw/{raw_id}
Reads data for a raw event
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
Accepted Permissions (at least one required)
Reads data for a raw event
import os
from cloudflare import Cloudflare
client = Cloudflare(
api_token=os.environ.get("CLOUDFLARE_API_TOKEN"), # This is the default and can be omitted
)
raw = client.cloudforce_one.threat_events.raw.get(
raw_id="raw_id",
account_id="account_id",
event_id="event_id",
)
print(raw.id){
"id": "1234",
"accountId": 1234,
"created": "1970-01-01",
"data": {},
"source": "https://example.com",
"tlp": "amber"
}Returns Examples
{
"id": "1234",
"accountId": 1234,
"created": "1970-01-01",
"data": {},
"source": "https://example.com",
"tlp": "amber"
}