Resend Invite notification

https://api.xata.io/workspaces/workspace_id/invites/invite_id/resend

Resend the notification for a previously generated Invite.

Expected Parameters

NameDescriptionInRequiredSchema
workspace_idWorkspace IDpathstring
invite_idInvite identifierpathstring

Resend Invite Notification

POST
https://api.xata.io/workspaces/workspace_id/invites/invite_id/resend

This operation provides a way to resend an Invite notification. Invite notifications can only be sent for Invites not yet accepted.

Status CodeDescriptionExample Response/Type Definition
204OK
400Bad Request
type ResendWorkspaceMemberInvite = {
    id?: string;
    message: string;
};
401Authentication Error
{
  "message": "invalid API key"
}
403Authentication Error
{
  "message": "invalid API key"
}
404Example response
type ResendWorkspaceMemberInvite = {
    id?: string;
    message: string;
};
5XXUnexpected Error