Files
Gainsight/Scripts/API_Tests/api_test.py
2022-12-16 15:50:08 -05:00

54 lines
1.3 KiB
Python

import requests
# apiKey = "SlpQlju219WnWogn94dQUT6Yt"
apiKey = "3ia7mWFkdeALYQFYoB51yh6Ov"
# ForceManager
# apiKey = "2vfHw6ksqGfT1gUhPM8pXx2wW"
# Talkspace Core
url ="https://api.northpass.com/v2/groups/e6ef3e5f-b5a2-4b10-868b-8c165d76d263/learning_paths"
# "https://api.northpass.com/v1/media"
# function = sys.argv[1]
def putTest(apiKey, url):
payload = {
"data": {
"type": "media",
"file_name": "/Users/normrasmussen/Downloads/Shopping&Delivery 9 XP.mp4",
}
}
headers = {
"accept": "application/json",
"content-type": "application/json",
"X-Api-Key": apiKey,
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)
def getTest(apiKey, url):
headers = {"accept": "application/json", "X-Api-Key": apiKey}
response = requests.get(url, headers=headers)
print(response.text)
jsonResponse = response.json()
# print(jsonResponse["data"][1]["attributes"])
def postTest(apiKey, url):
headers = {
"accept": "application/json",
"content-type": "application/json",
"X-Api-Key": apiKey,
}
response = requests.post(url, headers=headers)
print(response.text)
if __name__ == "__main__":
getTest(apiKey, url)
# putTest(apiKey, url)
# postTest(apiKey, url):