Prerequisites: * API doc - Read here * How to get API key and Auth Code - Read here Examples: Read Tickets url = auth = ('<apli_key>','<auth_code>') res = requests.get(url,auth=auth) Create a New ticket import requests import json url = auth = ('<apli_key>','<auth_code>') headers = {'Content-…
Find attached a sample Python scripts for creating tickets with attachments using API. CreateTicket.py - Code to create the ticket with attachment GenerateBASIC.py - Please use this to generate the BASIC component used for authentication during the API call.