# Check active filing calendars

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

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

# Check active filing calendars

Learn how to query and view active filing calendars for a company.

Once the Filing calendars are set-up, partner can check the list of Active filing calendars with the `filingCalendars` query:

**View request**:

```
query FilingCalendars {
  filingCalendars(input: {companyId: 123456}) {
    value {
      filingCalendars {
        value {
          id
          legalEntityName
          localRegistrationId
          taxFormCode
          effectiveDate
          eFilePassword
          eFileUsername
          currency
          companyId
          endDate
          filingFrequencyId
          filingTypeId
          fiscalYearStartMonth
          formCountry
          formRegion
          locationCode
          fixedPrepaymentAmount
          months
          taxTypes
          taxAuthorityId
        }
      }
    }
  }
}
```

**View response**:

```
{
  "data": {
    "filingCalendars": {
      "value": {
        "filingCalendars": {
          "value": [
            {
              "id": 123456,
              "legalEntityName": "Acme Corporation LLC",
              "localRegistrationId": null,
              "taxFormCode": "USAZTPT2",
              "effectiveDate": "2025-05-01",
              "eFilePassword": "securePassword123",
              "eFileUsername": "efile_user_01",
              "currency": "USD",
              "companyId": 6789012,
              "endDate": null,
              "filingFrequencyId": "MONTHLY",
              "filingTypeId": "ELECTRONICRETURN",
              "fiscalYearStartMonth": null,
              "formCountry": "US",
              "formRegion": "AZ",
              "locationCode": null,
              "fixedPrepaymentAmount": null,
              "months": 0,
              "taxTypes": [
                "C",
                "Lodging",
                "RentalLeasing",
                "S",
                "U",
                "Telecom"
              ],
              "taxAuthorityId": 218
            },
            {
              "id": 1234567,
              "legalEntityName": "Acme Corporation LLC",
              "localRegistrationId": null,
              "taxFormCode": "USTX0111401116",
              "effectiveDate": "2025-04-01",
              "eFilePassword": "securePassword123",
              "eFileUsername": "efile_user_01",
              "currency": "USD",
              "companyId": 6789012,
              "endDate": null,
              "filingFrequencyId": "MONTHLY",
              "filingTypeId": "ELECTRONICRETURN",
              "fiscalYearStartMonth": null,
              "formCountry": "US",
              "formRegion": "TX",
              "locationCode": null,
              "fixedPrepaymentAmount": null,
              "months": 0,
              "taxTypes": [
                "C",
                "S",
                "U"
              ],
              "taxAuthorityId": 72
            }
          ]
        }
      }
    }
  }
}
```