> For the complete documentation index, see [llms.txt](https://docs.tnid.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tnid.com/company/b2c-features/cancel-pending-b2c-connection-request.md).

# Cancel Pending B2C Connection Request

{% hint style="info" %}
The company GraphQL API is accessible at /company
{% endhint %}

```
mutation (
	$requestId: ID!
  ) {
	revokeB2cConnectionRequest (
  	requestId: $requestId
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	company {
    	id
  	}
  	user {
    	id
  	}
  	invitedUser {
    	id
  	}
	}
  }

```
