Launch Week 02 wrapped — explore all five launches

Resend Project Invitation

PUThttps://api.confident-ai.com/v1/projects/{projectId}/invitations/{invitationId}

Resends a pending project invitation email to the invitee.

PUT/v1/projects/{projectId}/invitations/{invitationId}
curl -X PUT "https://api.confident-ai.com/v1/projects/{projectId}/invitations/{invitationId}" \
  -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200
{
  "success": true,
  "data": {
    "invitation": {
      "id": 201,
      "email": "carol@example.com",
      "status": "PENDING",
      "created_at": "2024-12-04T23:00:00.000Z",
      "projectRoleId": "project-role-uuid-2"
    }
  }
}

Headers

  • CONFIDENT_API_KEYstringRequired

    The organization API key for your Confident AI organization.

Path parameters

  • projectIdstringRequired

    The unique identifier of the project.

  • invitationIdintegerRequired

    The unique identifier of the invitation.

Response

  • successboolean

    Indicates if the request was successful.

  • dataobject

    Show 1 propertyHide 1 property
    • invitationobject

      Show 5 propertiesHide 5 properties
      • idinteger

        Unique identifier for the invitation

      • emailstring

        The invited email address

      • statusenum

        The current status of the invitation

        Show 3 enum valuesHide 3 enum values
        • PENDING
        • ACCEPTED
        • DECLINED
      • created_atstring

        ISO 8601 timestamp of when the invitation was created

      • projectRoleIdstring

        The id of the project role the invitee will receive, or null for the default

Built byConfident AI