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).
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
project_name | str | Yes | — | |
invite_id | str | Yes | — |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
project(string)invite_id(string)cancelled(boolean)
See the response example below for the full payload shape.
Example
Section titled “Example”Tool Call
Section titled “Tool Call”{ "name": "cancel_project_invite", "arguments": { "project_name": "forecasts", "invite_id": "99999999-9999-9999-9999-999999999999" }}Response
Section titled “Response”{ "project": "forecasts", "invite_id": "99999999-9999-9999-9999-999999999999", "cancelled": true}- Module:
Collaborators - Requires authentication via API token or Auth0 JWT.