# Create a tax notice

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

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

# Create a tax notice

Create a new tax notice for a company to enable review and tracking.

Creates a new tax notice associated with a company for review and tracking.

To create a tax notice, use the `createNotices` mutation.

## View request

```
mutation CreateNotices {
  createNotices(
    input: {companyId: 123456, country: "US", filingFrequency: MONTHLY, region: "US", taxFormCode: "USAZTPT2", taxPeriod: "202503"}
  ) {
    comments {
      comment
    }
    createdDate
    finances {
      customerInterest
    }
    id
    modifiedDate
    filingFrequency
    region
    status
    taxFormCode
    taxPeriod
  }
}
```

## View response

```
{
  "data": {
    "createNotices": [
      {
        "comments": null,
        "createdDate": "2025-05-26T12:33:38.0354926",
        "finances": null,
        "id": 60637,
        "modifiedDate": "2025-05-26T12:33:38.0354931",
        "filingFrequency": "MONTHLY",
        "region": "US",
        "status": "New",
        "taxFormCode": "USAZTPT2",
        "taxPeriod": "202503"
      }
    ]
  }
}
```