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>"
}'
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>"
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Was this page helpful?