The update command is used to update an Access Key entity.

JSON Input Data Format
{
    "id": string,
    "auth": string,
    "secret": string,
    "groups": string
}
id * Specifies the ID of the Access Key.
auth * Specifies the authorization key. It is recommended to have a minimum length of 30 characters.
secret * Specifies the secret key. It is recommended to have a minimum length of 60 characters.
groups * Specifies a comma-separated list of Group IDs that will be assigned to the Access Key. You can pass an empty string to remove all groups.
* Indicates a mandatory field.

Code Snippets
Here are several code snippets provided for your direct use. Simply select your preferred tool/language by clicking on it.


Successful Response
{
    "result": "OK",
    "payload": "The process was successfully completed"
}

Failed Response
{
    "result": "ERR",
    "message": "Error message ..."
}