Create Topology

Creates a new topology model (only one per organization).

🚧

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