Create Invitations
POSThttps://api.confident-ai.com/v2/organization/invitations
Invites people to your organization by email and emails each of them a link that grants organization access when accepted — organization access only; a project has to be joined separately. Addresses are lowercased and must be company addresses. An address that already has an organization invitation is dropped from the batch, and so is one that already belongs to a member; if that leaves nothing to invite, the whole request is refused as a conflict instead. organizationRoleId sets the role every invitee lands on, and the Owner role cannot be handed out this way. On the Free plan, members plus new invitations cannot exceed 2 users. Only the invitations that were created are returned, each with its token.
curl -X POST "https://api.confident-ai.com/v2/organization/invitations" \
-H "CONFIDENT_API_KEY: <ORGANIZATION-API-KEY>" \
-H "Content-Type: application/json" \
-d '{
"emails": [
"jane@acme.com"
],
"organizationRoleId": "<ORGANIZATION-ROLE-ID>"
}'{
"success": true,
"data": {
"invitations": [
{
"id": 42,
"email": "jane@acme.com",
"status": "PENDING",
"created_at": "2025-01-15T10:30:00.000Z",
"organizationRoleId": "<ORGANIZATION-ROLE-ID>",
"token": "<INVITATION-TOKEN>"
}
]
},
"deprecated": false
}Headers
CONFIDENT_API_KEYstringRequiredThe organization API key for your Confident AI organization.
Request body
emailslist of stringsRequiredThe email addresses to invite, between 1 and 50 of them. Each is trimmed and lowercased, and must be a company address — free and disposable domains are refused.
organizationRoleIdstringThe id of the organization role every invitee lands on when they accept. Omit it to give them the default
Memberrole. TheOwnerrole cannot be handed out this way.
Response
Create Invitations succeeded.
successbooleanIndicates if the request was successful.
dataobjectEvery organization invitation that has not been accepted or revoked. Accepted invitations are left out, since the invitee is an organization member by then.
Show 1 propertyHide 1 property
invitationslist of objectsThe organization's pending and declined invitations.
Show 6 propertiesHide 6 properties
idintegerThe id of the invitation, generated by Confident AI.
emailstringThe email address the invitation was sent to, lowercased when it was created.
statusenumWhere an invitation stands: PENDING while its link can still be accepted, ACCEPTED once the invitee joined, DECLINED once they turned it down. A declined invitation cannot be accepted again until it is resent.
Show 3 enum valuesHide 3 enum values
PENDINGACCEPTEDDECLINED
created_atstringWhen the invitation was issued, as an ISO 8601 datetime. Resending an invitation stamps this again.
organizationRoleIdstring | nullThe id of the organization role the invitee lands on when they accept, or null to give them the default
Memberrole.tokenstring | nullThe token embedded in the invitee's invite link, returned unmasked. Anyone holding it can accept the invitation as the invited email address, so treat it as a secret. It is replaced whenever the invitation is resent, which invalidates any link sent earlier. It is null when the invitation has no token stored, in which case its link only points the invitee at signup.
deprecatedbooleanIndicates if this endpoint is deprecated.