PATCH
/
reporting
/
reports
/
{report_id}
curl --request PATCH \
  --url https://api.flare.io/firework/v2/reporting/reports/{report_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "audience": "technical",
  "author": "<string>",
  "elements": [
    {
      "enabled": true,
      "id": 123,
      "position": 123,
      "sort_by": "<string>",
      "time_interval": "<string>"
    }
  ],
  "title": "<string>"
}'

Authorizations

Authorization
string
header
required

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

Path Parameters

report_id
integer
required

Body

application/json
audience
enum<string>
Available options:
technical,
general
author
string
elements
object[]
title
string