Skip to main content
POST
/
custom-rule-types
Create a new entity
import requests

url = "http://api/apollo/custom-rule-types"

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

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

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

Body

application/json

JSON-formatted configuration values

schema
object

Response

200 - application/json

successful operation

id
string