Created
March 20, 2025 12:18
-
-
Save sts-developer/d23395e5483a30bd4cdbf3a8b472ce8a to your computer and use it in GitHub Desktop.
Sample code for Python Form1099OID RequestPdfURLs method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import http.client | |
| import json | |
| conn = http.client.HTTPSConnection("testapi.taxbandits.com") | |
| payload = json.dumps({ | |
| "SubmissionId": "dc888e87-ecf4-4d64-a13b-61458cb86763", | |
| "RecordIds": [ | |
| { | |
| "RecordId": "868fb473-ea8d-4d9c-8c89-cfc13ed173c6" | |
| } | |
| ], | |
| "Customization": { | |
| "TINMaskType": "Both" | |
| } | |
| }) | |
| headers = { | |
| 'Authorization': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJhdWQiOiJhM2VkMWE1ZTkwMWI0YmQzOTY5NTYwMTljYTRjMWZmOCIsImV4cCI6MTcyMzQ1Nzc1NiwiaWF0IjoxNzIzNDU0MTU2LCJpc3MiOiJodHRwczovL3Rlc3RvYXV0aC5leHByZXNzYXV0aC5uZXQvdjIvIiwic3ViIjoiOTc0YTFiZDU5Yjk3ZTE1YyJ9.DOdss97pIy6_rrS2IMDG5H8-sj0sg2cRF5upCVhBpBU', | |
| 'Content-Type': 'application/json' | |
| } | |
| conn.request("POST", "/v1.7.3/Form1099OID/RequestPdfURLs", payload, headers) | |
| res = conn.getresponse() | |
| data = res.read() | |
| print(data.decode("utf-8")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment