This endpoint lists all users with submissions that the requesting user can view, sorted by user name.
/v1/list_submission_users/?is_fabs=False
is_fabs
: (boolean) if the submissions checked should be FABS or DABS (True for FABS). Defaults toFalse
if not provided.
{
"users": [
{
"user_id": 4,
"name": "Another User",
"email": "[email protected]"
},
{
"user_id": 1,
"name": "User One",
"email": "[email protected]"
}
]
}
users
: ([dict]) contain the user's ID, name, and email:user_id
: (integer) ID of the username
: (string) name of the useremail
: (string) email of the user
Possible HTTP Status Codes:
- 401: Login required