Skip to content

Instantly share code, notes, and snippets.

@underscorephil
Created September 18, 2013 20:14
Show Gist options
  • Save underscorephil/6614974 to your computer and use it in GitHub Desktop.
Save underscorephil/6614974 to your computer and use it in GitHub Desktop.
import SoftLayer.API
from pprint import pprint as pp
apiUsername = ''
apiKey = ''
client = SoftLayer.Client(
username=apiUsername,
api_key=apiKey,
)
result = client['Account_Reports_Request'].createRequest()
pp(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment