Claude Platform Docs

Delete Invite

$ ant beta:organization:invites delete
DELETE/v1/organizations/invites/{invite_id}

Delete a pending invite.

Parameters
--invite-id: string

ID of the Invite.

Returns
BetaOrganizationInviteDeleteResponse: object{ id, type }
id: string

ID of the Invite.

type: "invite_deleted"

Deleted object type.

For Invites, this is always "invite_deleted".

Delete Invite

ant beta:organization:invites delete \
  --api-key my-anthropic-api-key \
  --invite-id invite_id
{
  "id": "invite_015gWxCN9Hfg2QhZwTK7Mdeu",
  "type": "invite_deleted"
}
Returns Examples
{
  "id": "invite_015gWxCN9Hfg2QhZwTK7Mdeu",
  "type": "invite_deleted"
}