Quickstart
// TypeScript
fetch('https://api.transformagent.ai/v1/tasks', {method:'POST',
headers:{'Content-Type':'application/json','Authorization':'Bearer YOUR_API_KEY'},
body: JSON.stringify({accelerator:'deal-desk', input:{ticketId:'JIRA-123'}})
}).then(r=>r.json()).then(console.log)
# Python
import requests
r = requests.post('https://api.transformagent.ai/v1/tasks',
headers={'Authorization':'Bearer YOUR_API_KEY'},
json={'accelerator':'deal-desk','input':{'ticketId':'JIRA-123'}})
print(r.json())