Skip to main content
POST
/
firework
/
v2
/
reporting
/
reports
cURL
curl --request POST \
  --url https://api.flare.io/firework/v2/reporting/reports \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "author": "<string>",
  "title": "<string>",
  "audience": "technical",
  "elements": [
    {
      "enabled": true,
      "id": 123,
      "position": 123,
      "sort_by": "custom",
      "time_interval": "<string>"
    }
  ]
}
'
This response has no body data.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
author
string
required
title
string
required
audience
enum<string>
Available options:
technical,
general
Example:

"technical"

elements
object[]

Response

200 - undefined