Create key pairs using REST API
Create key pairs using a REST API POST request without a request body, and receive access and secret keys in the response.
You can also create keypairs using the REST API using the following POST request:
POST /v3/admin/users/{user_id}/keypairs
Note: No body is required in this request.
The response to this POST request is as follows:
{
"access_key": "access key...",
"secret_key": "secret key...",
"message": "Keypair created: you will not be able to recover the secret, so take note of it"
}