Form Details Retrieval API
Fetches a submitted Form 7004’s key fields by its reference number for status checks, reconciliation, or display.
Endpoint:
HTTP
GET /Form7004/Get7004FormDetails?referenceNo={{referenceNo}}
Query Parameters
-
referenceNo → Reference number of the form (required)
Responses
JSON
// Success
{
"Status": true,
"data": [
{
"TaxId": "333333333",
"ExtensionForm": "1",
"TaxYear": "2025",
"CalendarYear": "Y",
"TaxStartPeriod": "2024-12-31T18:30:00.000Z",
"TaxEndPeriod": "2025-12-30T18:30:00.000Z",
"IsForeignCorp": true,
"IsFinalReturn": false,
"IsChangeAccPeriod": false,
"IsConsolidatedReturn": false,
"IsOther": false,
"FilerKey": "GUID",
"FilerSSN": "333333333",
"FilerLname": "sfasd",
"Country": "US",
"Address1": "adsf",
"Address2": "werqw",
"City": "qwerw",
"State": "AZ",
"ZipCode": "85004",
"SigningName": "asdf",
"SigningTitle": "asdf",
"SigningPhone": "333333333333333",
"LastFilingDate": "2026-04-15"
}
]
}
// Failure
{ "Status": false, "Message": "No form details found for the given reference number" }
