Choose your language:
    List all users
    Returns
    Returns an array of sso_user objects.

    Examples

    Example code:
    const SiteClient = require('datocms-client').SiteClient;
    const client = new SiteClient('YOUR-API-TOKEN');
    client.ssoUsers.all()
    .then((ssoUsers) => {
    ssoUsers.forEach((ssoUser) => {
    console.log(ssoUser);
    });
    })
    .catch((error) => {
    console.error(error);
    });
    Returned output:
    > node example.js
    {
    "id": "312",
    "username": "mark.smith@example.com",
    "externalId": "Ja23ekjhsad",
    "isActive": true,
    "firstName": "Mark",
    "lastName": "Smith",
    "meta": {
    "last_access": "2018-03-25T21:50:24.914Z"
    },
    "groups": [
    "312"
    ],
    "role": "34"
    }