action exavault_resend_invitations_for_share { label: "Resend invitations to share recipients" description: "Resend invitations to one or all recipients attached to specified share. The most recent message that was sent for the share will be re-used for this email.\n\nYou can use [GET /shares/{id}](#operation/getShareById) to view the recipient list and message history for a share. Use [PATCH /shares/{id}](#operation/updateShareById) to add or remove recipients." provider: exavault method: POST path: "/recipients/shares/invites/{shareId}" encoding: json input: { type: "object" properties: { "ev-access-token": { type: "string" } "ev-api-key": { type: "string" } recipientId: { type: "integer" format: "int32" description: "ID number of recipient to send a new invitation to." } shareId: { type: "integer" } } required: ["ev-access-token", "ev-api-key", "shareId"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "string" format: "email" } } responseStatus: { type: "integer" description: "Http status code of the response." } } } }