curl --request POST \
--url https://platform.kodexa.ai/api/teams/{id}/invite \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"email": "jsmith@example.com",
"firstName": "<string>",
"lastName": "<string>"
}
'{
"invited": true,
"teamMemberId": "<string>",
"userId": "<string>"
}Adds the given user to the team. If no user exists with the supplied email, a stub user is created so the invitation can complete later.
curl --request POST \
--url https://platform.kodexa.ai/api/teams/{id}/invite \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"email": "jsmith@example.com",
"firstName": "<string>",
"lastName": "<string>"
}
'{
"invited": true,
"teamMemberId": "<string>",
"userId": "<string>"
}Documentation Index
Fetch the complete documentation index at: https://developer.kodexa.ai/llms.txt
Use this file to discover all available pages before exploring further.
API key for authentication. Create one from the Kodexa platform UI under Settings > Access Tokens.
Unique identifier (UUID) of the resource.