Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
openapi: get /firework/v4/events/identifiers/{identifier_id}/_explain
openapi: firework-v4-openapi get /firework/v4/events/identifiers/{identifier_id}/_explain
---

Provides evidence as to how an event matches to an identifier, clarifying why an event is or is not found within a feed.
Provides evidence as to how an event matches to an identifier, clarifying why an event is or is not found within a feed.
Comment on lines -2 to +5

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this was updated with make lint

5 changes: 4 additions & 1 deletion docs/guides/threat-flow-report.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@ import GatedAccessFeature from '/snippets/gated-access-feature.mdx';
[threat_flow/intel/requests <Icon icon="code" size={16} />](/api-reference/v4/endpoints/create-intel-request)
endpoint to queue the generation of a report for a given question.

Send the intelligence question in `question`. Include any time window in the
question, such as "in the last week" or "in the last 6 months".

This endpoint returns a `request_id` that can be used to poll the request until it is completed.
</Step>

Expand Down Expand Up @@ -49,7 +52,7 @@ api_client = FlareApiClient.from_env()
intel_request_resp = api_client.post(
"/firework/v4/threat_flow/intel/requests",
json={
"question": "xss vulnerability in banks",
"question": "xss vulnerabilities targeting banks in the last 30 days",
"tone": "analytical",
},
)
Expand Down
Loading