Skip to content

cancel_project_invite

Cancel a pending project invite before the invitee signs up. Requires Owner role on the project. invite_id: the grant_id returned by invite_project_collaborator. Returns: project, invite_id, cancelled (bool).

NameTypeRequiredDefaultDescription
project_namestrYes
invite_idstrYes

Returns a structured object. Top-level fields:

  • project (string)
  • invite_id (string)
  • cancelled (boolean)

See the response example below for the full payload shape.

{
"name": "cancel_project_invite",
"arguments": {
"project_name": "forecasts",
"invite_id": "99999999-9999-9999-9999-999999999999"
}
}
{
"project": "forecasts",
"invite_id": "99999999-9999-9999-9999-999999999999",
"cancelled": true
}
  • Module: Collaborators
  • Requires authentication via API token or Auth0 JWT.