Add Multiple Incident Tags to an Incident

Create or update multiple incident tags 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 \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-type: application/json' \
     --data '[
    {"tag_id": "some_tag_id_1", "tag_value": "value_1"},
    {"tag_id": "some_tag_id_2", "tag_value": "value_2"}
  ]'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/environments/:env_id/incidents/:incident_id/tags \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-type: application/json' \
     --data '[
    {"tag_id": "some_tag_id_1", "tag_value": "value_1"},
    {"tag_id": "some_tag_id_2", "tag_value": "value_2"}
  ]'
Language