Skip to main content
PUT
/
groups
/
{id}
Update an entity
import requests

url = "http://api/apollo/groups/{id}"

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

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

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

Headers

If-Match
string
default:"-1"

An entity tag to match

Path Parameters

id
string
required

The entity ID

Body

application/json · object

JSON-formatted configuration values

The body is of type object.

Response

200 - application/json

successful operation

id
string