Files
Gainsight/Scripts/API_Tests/training_events.py

14 lines
267 B
Python
Raw Normal View History

import requests
import Apikeys
apikey = Apikeys.sps
url = "https://api.northpass.com/v2/events"
headers = {
"accept": "application/json",
"X-Api-Key": apikey
}
response = requests.get(url, headers=headers)
resp = response.json()
print(resp)