# Add finance details to a tax notice

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

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

# Add finance details to a tax notice

Learn how to add financial details, such as tax due, penalties, and credits, to a tax notice.

Adds financial information related to a tax notice, such as tax due, penalties, interest, or credits. You can include attachments for supporting documentation.

To add finance details to a tax notice, use the `createNoticeFinanceDetails` mutation.

## View request

```
mutation CreateNoticeFinanceDetails{
  createNoticeFinanceDetails(
    input: {
      companyId: 9312042
      financeDetails: {
        noticeId: 60231
        credits: 1.5
        interest: 1.5
        penalty: 1.5
        taxDue: 1.5
        taxAbated: 1.5
        attachmentUploadRequest: { content: "BASE64 STRING FOR THE ATTACHMENT", name: "test.pdf" }
      }
    }
  ) {
    documentId
    dueDate
    taxAbated
    penalty
    taxDue
    noticeId
    id
  }
}
```

## View response

```
{
  "data": {
    "createNoticeFinanceDetails": [
      {
        "documentId": 23643653,
        "dueDate": null,
        "taxAbated": 1.5,
        "penalty": 1.5,
        "taxDue": 1.5,
        "noticeId": 60354,
        "id": 172084
      }
    ]
  }
}
```