cancel_model_invite
Cancel a pending model invite before the invitee signs up. Requires Owner role on the model. invite_id: the grant_id returned by invite_model_collaborator. Returns: model, invite_id, cancelled (bool).
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
model_name | Annotated[str, Field(description='Name of the Bridge Town model. Caller must have Owner role.')] | Yes | — | |
invite_id | Annotated[str, Field(description='UUID of the pending invite to cancel.')] | Yes | — |
Returns
Section titled “Returns”Returns a structured object. Top-level fields:
model(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_model_invite", "arguments": { "model_name": "forecasts", "invite_id": "99999999-9999-9999-9999-999999999999" }}Response
Section titled “Response”{ "model": "forecasts", "invite_id": "99999999-9999-9999-9999-999999999999", "cancelled": true}- Module:
Collaborators - Requires authentication via API token or Auth0 JWT.