Update a Topology

Updates the organization's topology model.

🚧

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 PUT \
     --url https://api.bigpanda.io/resources/v2.0/topologies/590b72b91f0000130063753c \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <User API Key>' \
     --data '{
      "links":[
         {
            "source":"host",
            "target":"check"
         }
      ]
}'
curl --request PUT \
     --url https://eu-api.bigpanda.io/resources/v2.0/topologies/590b72b91f0000130063753c \
     --header 'Content-Type: application/json' \
     --header 'Authorization: Bearer <User API Key>' \
     --data '{
      "links":[
         {
            "source":"host",
            "target":"check"
         }
      ]
}'
Language