Skip to content

Instantly share code, notes, and snippets.

@underscorephil
Created September 9, 2013 16:05
Show Gist options
  • Save underscorephil/6497800 to your computer and use it in GitHub Desktop.
Save underscorephil/6497800 to your computer and use it in GitHub Desktop.
import SoftLayer.API
apiUsername = ''
apiKey = ''
client = SoftLayer.Client(
username=apiUsername,
api_key=apiKey,
)
ticket_id =
updates = client['Ticket'].getUpdates(id=ticket_id)
for update in updates:
print "Ticket: %s (%s)%s: %s" % (update['ticketId'], update['editorType'], update['editorId'],
update['entry'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment