The create command provisions a new Access Key that can be used in API operations.

JSON Input Data Format
{
    "name": string,
    "auth": string,
    "secret": string,
    "groups": string
}
name * Specifies the name for the Access Key, which can be any name.
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",
    "id": "V7-49ff499f-xxxx-xxxx-xxxx-b47fxxxx99af"
}

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