Add an Incident Tag to an Incident

Create or update an incident tag for a single incident.

🚧

Authentication

All BigPanda APIs require Bearer Token Authorization in the call headers.

This API uses the User API Key type of Authorization token.

Sample Call

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/environments/:env_id/incidents/:incident_id/tags/:tag_id \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-type: application/json' \
     --data '{"tag_value" : "value_1"}'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/environments/:env_id/incidents/:incident_id/tags/:tag_id \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-type: application/json' \
     --data '{"tag_value" : "value_1"}'
Language