Sorry, no results found for "".

Show examples in:
Javascript HTTP
Endpoint info
Available examples

Content Management API > Invitation

List all invitations

Returns

Returns an array of resource objects of type site_invitation

Examples

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" },
}