Created
September 9, 2013 16:05
-
-
Save underscorephil/6497800 to your computer and use it in GitHub Desktop.
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 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