Sorry, no results found for "".
Returns a resource object of type sso_user
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const userId = "312";
const ssoUser = await client.ssoUsers.find(userId);
// Check the 'Returned output' tab for the result ☝️ console.log(ssoUser);}
run();