Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Response formatsJSON
Response code201
Requires authentication?Yes
HTTP MethodPOST

Parameters

 

Name TypeDefault ValueValidationDescription

parent_id

required

uuid-uuid4

user ID of the parent

name 

required

string-length(3, 511)

user full name

quota 

optional

int-1int

user file usage quota. -1 = unlimited

status

required 

string<'A'|'D'>--

user status

email

required

string-email

user email

super_admin

optional 

boolfalse-

enables to return files.

home_id

optional

uuid-uuid4

user home folder. If not specified will be created automatically.

user_operations

optional 

int-int

user permissions

home_operations

optional 

int-int

user home folder permissions

language

optional

string-string

user language. Not used as of now.

groups

?

list??uuid4?user groups

 

Example Request URL

Example Result

Code Block
languagejs
{
	"id": <uuid>,
    "parent_id": <uuid>,
    "home_id": <uuid>,
    "home_name": <string>,
    "super_admin": <string>,
    "name": <string>,
    "email": <string>,
    "status": <string>,
    "quota": <int>,
    "created": <timestamp>,
    "modified": <timestamp>,
    "user_operations": <int>,
    "home_operations": <int>,
    "language": <string>
    "storage_id": <uuid>,
    "has_key": <bool>
}

 

 

 

 

Quatrix APIs v1.0 QA1