> 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/api-reference/002_company/019_settings/004__get_company_pending_action_counts.md).

# Get Company Pending Action Counts

GraphQL endpoint: `/company`

Returns how many items are waiting on the current company's response: connection requests received from people and from other companies, form submission requests, and documents received over a message channel awaiting confirmation.

Every kind is always present and always an integer — a kind with nothing waiting is `0`, never null or absent.

Each count resolves independently, so selecting a subset of the fields runs only those counts.

## Query

```graphql
query {
  pendingActionCounts {
    peopleConnectionRequests
    companyConnectionRequests
    formRequests
    pendingDocuments
  }
}

```

## Variables

```json
{}
```

## Response

```json
{
  "data": {
    "pendingActionCounts": {
      "companyConnectionRequests": 3,
      "formRequests": 1,
      "pendingDocuments": 1,
      "peopleConnectionRequests": 2
    }
  }
}
```
