/v1/users
Returns a paginated list of users visible to the project token.
Example request
curl -X GET "https://api.cloudapi.dev/v1/users?limit=25" \
-H "Authorization: Bearer $CLOUDAPI_TOKEN"
Example response
{
"data": [
{"id": "usr_8f2", "email": "[email protected]", "role": "admin"}
],
"next_cursor": "usr_8f2"
}