> 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/011_documents/004__accept_company_documents.md).

# Accept Company Documents

GraphQL endpoint: `/company`

Accepts documents that arrived over a channel (SMS, MMS or email) into the calling company's repository. Accepted documents become visible in the main list and are queued for AI tagging.

## Query

```graphql
mutation ($ids: [ID!]!) {
  acceptCompanyDocuments(ids: $ids) {
    status
    count
  }
}

```

## Variables

```json
{
  "ids": [
    "00000000-0000-4000-8000-000000000001",
    "00000000-0000-4000-8000-000000000002"
  ]
}
```

## Response

```json
{
  "data": {
    "acceptCompanyDocuments": {
      "count": 2,
      "status": "OK"
    }
  }
}
```
