Skip to content

Instantly share code, notes, and snippets.

@underscorephil
Created November 5, 2013 15:11
Show Gist options
  • Save underscorephil/7320485 to your computer and use it in GitHub Desktop.
Save underscorephil/7320485 to your computer and use it in GitHub Desktop.
import SoftLayer.API
from pprint import pprint as pp
api_username = ''
api_key = ''
client = SoftLayer.Client(
username=api_username,
api_key=api_key,
)
result = client['Dns_Domain_ResourceRecord'].deleteObject(id=1234)
pp(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment