Return annual returns filing history
Last updated 1 year ago
annual returns filing history
const response = await fetch('https://cipc-apm-rs-dev.azure-api.net/enterprise/v1/filing-history', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "enterprise_number": "string" }), }); const data = await response.json();
{ "filings_history_list": [ { "annual_return_date": "text", "non_compliance_date": "text", "date_filed": "text", "status": "text" } ] }