> 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/list-pending-subscription-requests.md).

# List Pending Subscription Requests

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

```json
  query (
	$includedType: B2cConnectionType
	$excludedType: B2cConnectionType
	$limit: Int
  ) {
	pendingB2cConnectionRequests (
	) {
  	id
  	type
  	status
  	insertedAt
  	updatedAt
  	respondedAt
  	company {
    	id
  	}
  	invitedUser {
    	id
  	}
  	user {
    	id
  	}
}
  }

```
