Python
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>" }
JSON-formatted configuration values
The body is of type object.
object
successful operation
Was this page helpful?