Skip to main content

Edit a User Invitation

POST 

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

This endpoint allows to edit the details of an invitation 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.x

Body

The details to be updated for the invited user.

    roles

    object[]

    required

  • Array [

  • 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]

  • ]

Responses

The edited 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...