Create an Environment Group

🚧

Authentication

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

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

📘

Adding environments to a group

After creating an environment group, you can use the Update Environment Group endpoint to add environment IDs to the group.

Sample Call

curl --request POST \
     --url https://api.bigpanda.io/resources/v2.0/environments-groups \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
        "name": "EnvGroupName"
      }'
curl --request POST \
     --url https://eu-api.bigpanda.io/resources/v2.0/environments-groups \
     --header 'Authorization: Bearer <User API Key>' \
     --header 'Content-Type: application/json' \
     --data '{
        "name": "EnvGroupName"
      }'
Language
Authorization
Header