Skip to content

Instantly share code, notes, and snippets.

@rushout09
Created July 31, 2022 04:41
Show Gist options
  • Save rushout09/7ac29aeb8c52d1842f8e089c483e1342 to your computer and use it in GitHub Desktop.
Save rushout09/7ac29aeb8c52d1842f8e089c483e1342 to your computer and use it in GitHub Desktop.
Small python script to download all parkshed invoices at once. Just login to parkshed with phone number and otp. copy the authorization token and customer id from the network tab by doing inspect element.
import requests
from pathlib import Path
customer_id = input("Input customerId.")
bearer_token = input("Bearer token")
headers = {
"authorization": bearer_token
}
response = requests.get(url=f"https://api.parkshed.com/bs/v1/bookings?customerId={customer_id}", headers=headers)
booking_json = response.json()
data = booking_json.get("data")
bookings = []
for d in data:
bookings.append(d.get("bookingId"))
for bill in bookings:
filename = Path(f'{bill}.pdf')
response = requests.get(url=f"https://api.parkshed.com/bs/v1/bookings/{bill}/invoice", headers=headers)
filename.write_bytes(response.content)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment