Skip to main content

Resend a User Invitation

POST 

/v3/applications/:appId/users-invitations/:userInvitationId/resend

This endpoint resends an invitation to a user for an application.

Request

Path Parameters

    appId stringrequired

    The application identifier which is used to identify the application used.

    Example: appId_XXXX-XXXX-XXXX-XXXX-XXXX
    userInvitationId stringrequired

    The unique identifier of the user invitation to be resent.

Responses

The resent user invitation.

Schema

    _id string

    A unique string identifier for the invited user. This is typically generated by the system and is read-only.

    email stringrequired

    The email address of the invited user.

    appId appId (string)required

    The application identifier which is used to identify the application used.

    status IGNISIGN_APPLICATION_INVITED_USER_STATUS (string)required

    Possible values: [PENDING, ACCEPTED, DECLINED, CANCELED]

    The current status of the invited user.

    roles

    object

    required

    The roles assigned to the invited user for each environments..

    DEVELOPMENT IGNISIGN_APPLICATION_ROLES (string)[]

    Possible values: [ADMIN, USER, READER]

    STAGING IGNISIGN_APPLICATION_ROLES (string)[]

    Possible values: [ADMIN, USER, READER]

    PRODUCTION IGNISIGN_APPLICATION_ROLES (string)[]

    Possible values: [ADMIN, USER, READER]

Loading...