...
Service | API | Method |
---|
urac | /admin/users/count | GET |
...
Workflow: Count Users Flow
Input
...
Type: application/json
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 |
---|
Output
...
Valid Response
Code Block |
---|
language | js |
---|
title | Valid Response Sample |
---|
|
{
"result": true,
"data": {
"count": 12
}
} |
...
Code Block |
---|
language | js |
---|
title | Error Response Sample |
---|
|
{
"result":false,
"errors":{
"codes":[600400],
"details":[
{
"code": 600400,
"message": "Database connection error"
}
]
}
} |
...
Code Block |
---|
language | bash |
---|
title | Calling List Users API |
---|
|
> CURL -X GET http://127.0.0.1:4000/urac/admin/users/count?tId=5551aca9e179c39b760f7a1a |
Response
Code Block |
---|
language | js |
---|
title | List Users API response |
---|
|
{
"result": true,
"data": {
"count": 12
}
} |
...