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