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

fetch('https://api.example.com/actions/reload-full-history-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-full-history-observers"

response = requests.post(url)

print(response.text)
false
{}

Response

Successful response

The response is of type object.