Skip to main content
POST
/
actions
/
reload-observers
Reload observers
curl --request POST \
  --url https://api.example.com/actions/reload-observers
const options = {method: 'POST'};

fetch('https://api.example.com/actions/reload-observers', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
import requests

url = "https://api.example.com/actions/reload-observers"

response = requests.post(url)

print(response.text)
false
{}

Response

Successful response

The response is of type object.