List all users of a workspace
List all users of a workspace
Path Parameters
- organization_id integer required
ID of the workspace
Responses
- 200
- 401
- 403
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema array
- first_name string
User's first name
- last_name string
User's last name
- email email
User's email. Should be unique
- password password
Possible values:
>= 8 characters
User's password
[
{
"first_name": "John",
"last_name": "Doe",
"email": "john.doe@example.com",
"password": "badpassword"
}
]
User is not authenticated. This means token is either not present or invalid
User does not have the minimal required organization role "ADMIN"
No workspace was found that corresponds to the ID sent
Something is wrong with the API.
Loading...