We bought the self-hosting license recently, I spun-up the container and send out some requests. Not sure why getting a 404
This is what I am doing
import requests
headers = {
'accept': 'multipart/form-data',
…...} file_path = 'slaes_report.pdf' with open(file_path, 'rb') as...file: files = { 'file': (file_path, file, 'application/pdf'), }...