> 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/b2b-features/respond-to-b2b-connection-requests.md).

# Respond to B2B Connection Requests

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

```
mutation (
	$requestId: ID!
	$response: ConnectionRequestResponse!
  ) {
	respondB2bConnectionRequest (
  	requestId: $requestId
  	response: $response
	) {
  	id
  	status
  	type
  	insertedAt
  	respondedAt
  	updatedAt
  	company {
    	id
  	}
  	user {
    	id
  	}
  	invitedCompany {
    	id
  	}
	}
  }

```
