Show examples in:
    List all SSO groups

    Returns

    Returns an array of sso_group resource objects.

    Examples

    Example code:
    import { buildClient } from '@datocms/cma-client-node';
    async function run() {
    const client = buildClient({ apiToken: '<YOUR_API_TOKEN>' });
    const ssoGroups = await client.ssoGroups.list();
    ssoGroups.forEach((ssoGroup) => {
    console.log(ssoGroup);
    });
    }
    run();
    Returned output:
    {
    id: '312',
    name: 'Admin',
    priority: 1,
    role: {
    type: 'role',
    id: '34'
    },
    users: [
    {
    type: 'sso_user',
    id: '312'
    }
    ]
    }