curl --request GET \
--url https://api.example.com/api/v2/users \
--header 'Content-Type: application/json' \
--data '{}'{
"users": [
{
"id": "bf56b063-80dc-4ad5-91f6-f7067ad1fa06",
"email_address": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"account_role": "<string>",
"profile_picture": "<string>",
"profile_color": "<string>",
"is_deleted": true
}
]
}List Resource - List Resource
curl --request GET \
--url https://api.example.com/api/v2/users \
--header 'Content-Type: application/json' \
--data '{}'{
"users": [
{
"id": "bf56b063-80dc-4ad5-91f6-f7067ad1fa06",
"email_address": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"account_role": "<string>",
"profile_picture": "<string>",
"profile_color": "<string>",
"is_deleted": true
}
]
}The body is of type EmptyRequest · object.
UsersListResponse(users: List[server.api_routes.users_api_v2.UserResponse])
Show child attributes