# Add comment to a tax notice

Source: https://developer.avalara.com/products/returns/integration-guides/managed-returns/uto2043137647922/

Guide: Avalara Managed Returns API (U.S. and Canada)

# Add comment to a tax notice

Learn how to add a comment to an existing tax notice, including attaching files for documentation.

Adds a comment to an existing tax notice. Comments can include file attachments to support communication and documentation.

To add a comment to a tax notice, use the `createNoticeComments` mutation.

## View request

```
mutation CreateNoticeComments{
  createNoticeComments(
    input: {
      companyId: 9312042
      comments: {
        commentType: INTERNAL
        noticeId: 60231
        comment: "CRRComment"
        attachmentUploadRequest: { content: "BASE64 STRING FOR THE ATTACHMENT", name: "test.pdf" }
      }
    }
  ) {
    comment
    documentId
    id
  }
}
```

## View response

```
{
  "data": {
    "createNoticeComments": [
      {
        "comment": "CRRComment",
        "documentId": 23643652,
        "id": 652637
      }
    ]
  }
}
```