# Passing diagnostic information in the POST body:
import requests
requests.post("{{ ping_url }}", data="temperature=-7")

# Passing diagnostic information in the User-Agent header:
import requests
requests.get("{{ ping_url }}", headers={"User-Agent": "temperature=-7"})