curl --request GET \
--url https://api.algure.com/v1/users \
--header 'Authorization: Basic <encoded-value>'[
{
"id": 123,
"username": "<string>",
"fullName": "<string>",
"role": {
"name": "<string>",
"id": "admin"
}
}
]Get a list of users within an organization.
This endpoint intentionally omits sensitive user fields.
curl --request GET \
--url https://api.algure.com/v1/users \
--header 'Authorization: Basic <encoded-value>'[
{
"id": 123,
"username": "<string>",
"fullName": "<string>",
"role": {
"name": "<string>",
"id": "admin"
}
}
]Use Integration API credentials as HTTP Basic auth (username: client id, password: client secret).
Was this page helpful?