GET
/
filings
/
{id}
curl --request GET \
  --url https://base_url/api/v1/filings/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "corporation_id": "<string>",
    "country": "US",
    "country_options": {
      "US": {
        "state": "CA",
        "legal_name": "Example Inc.",
        "state_options": {
          "CA": {
            "payment_interval": "ANNUAL_CALENDAR_YEAR",
            "sales_tax_id": "<string>",
            "username": "<string>",
            "password": "<string>",
            "pin": "<string>",
            "web_file_number": "<string>"
          }
        }
      }
    },
    "frequency": "MONTHLY",
    "period_start_date": "2023-12-25",
    "due_date": "2023-12-25",
    "filing_status": "PENDING",
    "filed_on": "2023-12-25",
    "registration_id": "<string>",
    "total_tax_filed": 135.92,
    "sales_details": {
      "total_sales": 12345.91,
      "taxable_sales": 12345.91,
      "sales_tax_collected": 771.62
    },
    "payment_details": {
      "amount_due": 771.62,
      "payment_status": "PENDING",
      "failure_details": {
        "failed_at": "<string>",
        "reason": "<string>"
      }
    }
  },
  "message": "Successfully fetched filing."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the transaction to fetch.

Response

200
application/json
Transaction fetch response
data
object
message
string
Example:

"Successfully fetched filing."