When I send a GET https://api.softlayer.com/rest/v3/SoftLayer_Account returns my SoftLayer_Account data:
<root>
<accountManagedResourcesFlag/>
<accountStatusId></accountStatusId>
<address1></address1>
<address2></address2>
<allowedPptpVpnQuantity></allowedPptpVpnQuantity>
<city></city>
<claimedTaxExemptTxFlag/>
<companyName></companyName>
<country></country>
<createDate></createDate>
<email></email>
<firstName></firstName>
<id></id>
<isReseller></isReseller>
<lastName></lastName>
<lateFeeProtectionFlag/>
<modifyDate></modifyDate>
<officePhone></officePhone>
<postalCode></postalCode>
<state></state>
<statusDate/>
</root>
Is there any way to change my Account profile using the API?
Via control.softlayer.com, I can send kind of "request for profile change", is there any way to send this request via API (and follow up when request was approved/denied)?
What I already did trying to find a solution:
Looked up for some related method on http://sldn.softlayer.com/reference/services/SoftLayer_Account, nothing was found.
I tried to get some object with this data, so I could see the object type and manipulate
#getAddresses#getActiveAddresses
but none returned a Object I could manipulate (call methods on)
- Is there http://sldn.softlayer.com/reference/services/SoftLayer_Account_Address but seems I need to create one, what I want is change the existing data
(I do really believe that this address should be returned on #getAddresses if data on Account was linked to it)
Thank you