curl --request GET \
--url https://api.flare.io/firework/v4/threat_flow/reports/{report_id} \
--header 'Authorization: Bearer <token>'
{
"report": {
"id": 123,
"format_type": "simple_summary",
"title": "<string>",
"subtitle": "<string>",
"summary": "<string>",
"content": "<string>",
"tags": [
"<string>"
],
"highlights": [
"<string>"
],
"related_activity_uids": [
"<string>"
],
"prompt_preset_uid": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"published_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"reading_time": 123,
"tenant_id": 123,
"organization_id": 123
}
}
curl --request GET \
--url https://api.flare.io/firework/v4/threat_flow/reports/{report_id} \
--header 'Authorization: Bearer <token>'
{
"report": {
"id": 123,
"format_type": "simple_summary",
"title": "<string>",
"subtitle": "<string>",
"summary": "<string>",
"content": "<string>",
"tags": [
"<string>"
],
"highlights": [
"<string>"
],
"related_activity_uids": [
"<string>"
],
"prompt_preset_uid": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"published_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"reading_time": 123,
"tenant_id": 123,
"organization_id": 123
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Successful Response
The response is of type object
.
Was this page helpful?