Skip to main content
PATCH
/
firework
/
v4
/
events
/
tenant
/
metadata
Update Tenant Metadata
curl --request PATCH \
  --url https://api.flare.io/firework/v4/events/tenant/metadata \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "tags": [
    "<string>"
  ],
  "severity": "info",
  "notes": "<string>"
}
'
{
  "uid": "<string>",
  "notes": "<string>",
  "tags": [
    "<string>"
  ],
  "severity": "<string>"
}

Authorizations

Authorization
string
header
required

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

Query Parameters

uid
string
required

Body

application/json
tags
string[] | null
severity
enum<string> | null
Available options:
info,
low,
medium,
high,
critical
notes
string | null

Response

Successful Response

uid
string
required
notes
string | null
required
tags
string[]
required
severity
string | null
required