For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Trust CenterStatusSupportGet a demoPlatform
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
DocumentationEvals API ReferenceIntegrations & OTELPlatform SettingsSelf-HostingGuidesChangelog
  • Get Started
    • Introduction
    • Quickstart
    • Authentication
    • Data Models
    • API Conventions
  • Data Models
      • GETList Projects
      • POSTCreate Project
      • GETRetrieve Project
      • PUTUpdate Project
      • DELDelete Project
        • GETList Project Invitations
        • POSTCreate Project Invitations
        • PUTResend Project Invitation
        • DELRevoke Project Invitation
  • Evals
  • Legacy
LogoLogo
Trust CenterStatusSupportGet a demoPlatform
Data ModelsProjectsInvitations

Resend Project Invitation

PUT
https://api.confident-ai.com/v1/projects/:projectId/invitations/:invitationId
PUT
/v1/projects/:projectId/invitations/:invitationId
$curl -X PUT https://api.confident-ai.com/v1/projects/projectId/invitations/1 \
> -H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>"
200Updated
1{
2 "success": true,
3 "data": {
4 "invitation": {
5 "id": 201,
6 "email": "carol@example.com",
7 "status": "PENDING",
8 "created_at": "2024-12-04T23:00:00.000Z",
9 "projectRoleId": "project-role-uuid-2"
10 }
11 }
12}
Resends a pending project invitation email to the invitee.
Was this page helpful?
Previous

Revoke Project Invitation

Next
Built with

Path parameters

projectIdstringRequired
The unique identifier of the project.
invitationIdintegerRequired
The unique identifier of the invitation.

Headers

CONFIDENT_API_KEYstringRequired
The organization API key for your Confident AI organization.

Response

successboolean
Indicates if the request was successful.
dataobject