I am trying to update a password/Username of OS using Java API in Softlayer. But after executing API, Password is not modified. Here is the code i\'ve tested. Please comment me
Please try the following: SoftLayer_Software_Component_Password::editObject
Below is a REST example:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Software_Component_Password/[comp_pass_id]/editObject
Method: POST
Json Payload:
{
"parameters": [
{
"password": "myPassEdited",
"username": "myUserEdited"
}
]
}
Also, to get passwords of server software components, please see:
https://[username]:[apikey]@api.softlayer.com/rest/v3/SoftLayer_Hardware/[server_id]/getSoftwareComponents?objectMask=mask[passwords]
Method: GET