PUT /v2/accounts
Create a new user account.
{
"email": "$email",
"first_name": "$first_name",
"last_name": "$last_name",
"phone": "$phone",
"password": "$password"
}
{
"success":true,
"user":{
"id":"$user_id",
"state":"$user_state",
"name":"$user_name",
"active":$user_active,
"email":"$user_email",
"phone":"$user_phone",
"e24files":
{
"s3":
{
"api_id":"$s3_api_key",
"secret_key":"$s3_secret_key"
},
"swift":
{
"api_id":"$swift_api_key",
"secret_key":"$swift_secret_key"
}
},
"api":
[
{
"api_key":"$api_key",
"secret_key":"$api_secret_key"
}
],
"sshkeys":
[
{
"id":$ssh_id,
"name":"$ssh_name",
"fingerprint":"$ssh_fingerprint"
}
]
}
}
created
GET /v2/accounts?limit=$limit&offset=$offset
Listing of user accounts with possible limit setting.