Skip to main content
POST
/
groups
Create a new entity
import requests

url = "http://api/apollo/groups"

payload = {}
headers = {"Content-Type": "application/json"}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
{
  "id": "<string>"
}

Body

application/json · object

JSON-formatted configuration values

The body is of type object.

Response

200 - application/json

successful operation

id
string