Sorry, no results found for "".
Returns an array of resource objects of type site_invitation
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const siteInvitations = await client.siteInvitations.list();
for (const siteInvitation of siteInvitations) { // Check the 'Returned output' tab for the result ☝️ console.log(siteInvitation); }}
run();
{ id: "312", email: "mark.smith@example.com", expired: "mark.smith@example.com", role: { type: "role", id: "34" },}