Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > SSO User

List all users

Returns

Returns an array of resource objects of type sso_user

Examples

import { buildClient } from "@datocms/cma-client-node";
async function run() {
const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const ssoUsers = await client.ssoUsers.list();
for (const ssoUser of ssoUsers) {
// Check the 'Returned output' tab for the result ☝️
console.log(ssoUser);
}
}
run();
{
id: "312",
username: "mark.smith@example.com",
external_id: "Ja23ekjhsad",
is_active: true,
first_name: "Mark",
last_name: "Smith",
meta: { last_access: "2018-03-25T21:50:24.914Z" },
groups: [{ type: "sso_group", id: "312" }],
role: { type: "role", id: "34" },
}