The create command is used to encrypt and store sensitive information, allowing it to be later retrieved via name tags without revealing the actual data.

JSON Input Data Format
{
    "name": string,
    "secret": string,
    "comments": string
}
name * Specifies the name for the key, which can be anything. This field can be retieved via a name tag and is commonly used for user names, API address, or server names.
secret * Specifies the text that will be encrypted. This field can be retrieved via a name tag and is most commonly used for passwords or tokens, but it can store any confidential information.
comments Specifies additional text for the key, used to enter a short description of the key, such as "Token for API" or "Password for Linux."
* 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 ..."
}