Skip to main content

Resend Invitation

POST/users/invitations/{id}/resend
Send another copy of an invitation email. If someone didn't get the original email (spam folder, typo, etc.), this sends a fresh email with the same invitation code. The invitation expiry date stays the same-it doesn't reset when you resend.

When to use this

  • Helping someone who lost or deleted the original email
  • Following up with people who haven't responded
  • Checking if the email address is correct

Parameters

idpathrequired
string

Response

Invitation resent successfully

Notes

ℹ️The invitation code and expiry date stay the same. Only the email is resent.
💡If the invitation has expired, you'll need to cancel it and create a new one.
Code Samples

Resend User Invitation using the TypeScript SDK:

import { BackstageClient } from '@ticketlayer/backstage';

const client = new BackstageClient({
organisationSlug: 'your-org',
});
client.setAccessToken('YOUR_ACCESS_TOKEN');

// Resend User Invitation
const result = await client.userinvitation.resendUserInvitation('{{ID}}');

console.log('Operation completed:', result);

Try It

Path Parameters

Related