General Information
...
Name | Source | Mandatory | Type | Special Format | Description |
---|---|---|---|---|---|
tId | Query | NO | String | N/A | If set, the api will return the users of a specific tenant; else the api returns all the users in the database |
start | Query | NO | Number | N/A | The start index of the records to get. Default 0 |
limit | Query | NO | Number | N/A | The number of records to get. Default 1000 |
Output
...
Valid Response
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": [{ "..." }, // ... ] } |
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "result": true, "data": [ { "_id": "571a2a0e8cc861b98a0b9467", "locked": true, "username": "owner", "firstName": "owner", "lastName": "owner", "email": "owner@soajs.org", "ts": 1461332494711, "status": "active", "profile": {}, "groups": ["owner"], "config": { "packages": {}, "keys": {} }, "tenant": { "id": "5551aca9e179c39b760f7a1a", "code": "DBTN" } } ] } |