Skip to content

Instantly share code, notes, and snippets.

@awarrenlove
Created August 1, 2022 17:42
Show Gist options
  • Save awarrenlove/4f9f1e5c337c50f3c8c6b1a15fcb6af4 to your computer and use it in GitHub Desktop.
Save awarrenlove/4f9f1e5c337c50f3c8c6b1a15fcb6af4 to your computer and use it in GitHub Desktop.
Quartzy API example in Python
from getpass import getpass
import requests
headers = {
"Access-Token": getpass("Access Token --> ")
}
params = {
"page": 1
}
response = requests.get("https://api.quartzy.com/order-requests", headers=headers, params=params)
print(response.status_code)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment