GET and POST are supported.GET, PUT, and DELETE are supported.To get a specific number of users or list of users from a concrete page in a response, use pagination parameters:
| Pagination param | Description |
|---|---|
| page | Shows users on a page with the defined number |
| items_per_page | Shows N users, where N - is a number defined in the parameter |
Examples:
Response is an array with 10 users from the 5th page (10 is the default value of the items_per_page parameter).
Response is an array with 20 users from the first page.
Response is an array with 20 users from the 5th page.
A user has a number of properties, represented by fields.
The full list of supported fields is given below (mandatory fields are marked with *).
Note
Any field not listed in the table below will be ignored if occurs in an API request JSON data.
| Field name | Description | Default value | Supported values |
|---|---|---|---|
| email* | User’s e-mail | — | Valid e-mail address |
| user_type* | User type:
A for AdminC for Customer |
— | AC |
| company_id* | ID of the store or vendor the user belongs to | Default company ID | integer |
| status* | User status:
A for ActiveD for Disabled |
A |
AD |
| firstname | User’s first name | — | string |
| lastname | User’s last name | — | string |
| company | User company | ‘Your company’ | string |
| company_name | Same as company |
— | string |
| is_root | If
Y, the user is a root administrator,if
N, the user is not a root administrator |
Y for an administrator accountN for a non-administrator account |
YN |
| user_id | User ID. Used only if the Use email as login setting is disabled | Set automatically | integer |
| user_login | User login | — | string |
| timestamp | Creation timestamp | Set automatically | Valid timestamp in seconds |
| password | The value of this field is md5 hash of user password. Used only when creating and updating a user | — | string |
Questions & Feedback
Have any questions that weren't answered here? Need help with solving a problem in your online store? Want to report a bug in our software? Find out how to contact us.