Authentication API
- Tokens
Events API
- Events
- Event Feeds
- Global Search
Leaked Credentials API
- Credentials
- Sources
- Identities
- Cookies
Management API
- Identifiers
- Identifier Groups
- Alerts
- Current User
- Organization Members
- Reporting
- Tenants
Threat-Flow API
- Reports
Deprecated APIs
- Global Search
- Identities
- Credentials
- Event Feeds
Reporting
Create Report
POST
/
reporting
/
reports
curl --request POST \
--url https://api.flare.io/firework/v2/reporting/reports \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"audience": "technical",
"author": "<string>",
"elements": [
{
"enabled": true,
"id": 123,
"position": 123,
"sort_by": "custom",
"time_interval": "<string>"
}
],
"title": "<string>"
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Was this page helpful?
curl --request POST \
--url https://api.flare.io/firework/v2/reporting/reports \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"audience": "technical",
"author": "<string>",
"elements": [
{
"enabled": true,
"id": 123,
"position": 123,
"sort_by": "custom",
"time_interval": "<string>"
}
],
"title": "<string>"
}'
Assistant
Responses are generated using AI and may contain mistakes.