GET api/entity1098corrections/{taxProfileId}/{year}
Get entities that need to be corrected
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| taxProfileId |
|
integer |
Required |
| year |
Year must be current year or last year |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of Entity1098CorrectionModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
|
integer |
None. |
| SuperEntityId |
|
integer |
None. |
| EntityName |
|
string |
None. |
| TaxId |
|
string |
None. |
| EntityNumber |
|
string |
None. |
| ParameterIds |
|
Collection of integer |
None. |
| CorrectedResidentsCount |
|
integer |
None. |
| RealEstateTaxes |
|
decimal number |
None. |
| MortgageInterest |
|
decimal number |
None. |
Response Formats
application/json, text/json
[
{
"id": 1,
"superEntityId": 1,
"entityName": "sample string 2",
"taxId": "sample string 3",
"entityNumber": "sample string 4",
"parameterIds": [
1,
2
],
"correctedResidentsCount": 5,
"realEstateTaxes": 6.0,
"mortgageInterest": 7.0
},
{
"id": 1,
"superEntityId": 1,
"entityName": "sample string 2",
"taxId": "sample string 3",
"entityNumber": "sample string 4",
"parameterIds": [
1,
2
],
"correctedResidentsCount": 5,
"realEstateTaxes": 6.0,
"mortgageInterest": 7.0
}
]
application/xml, text/xml
<ArrayOfEntity1098CorrectionModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CamAcctApi.Core.Models.IRS.Corrections">
<Entity1098CorrectionModel>
<CorrectedResidentsCount>5</CorrectedResidentsCount>
<EntityName>sample string 2</EntityName>
<EntityNumber>sample string 4</EntityNumber>
<Id>1</Id>
<MortgageInterest>7</MortgageInterest>
<ParameterIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</ParameterIds>
<RealEstateTaxes>6</RealEstateTaxes>
<SuperEntityId>1</SuperEntityId>
<TaxId>sample string 3</TaxId>
</Entity1098CorrectionModel>
<Entity1098CorrectionModel>
<CorrectedResidentsCount>5</CorrectedResidentsCount>
<EntityName>sample string 2</EntityName>
<EntityNumber>sample string 4</EntityNumber>
<Id>1</Id>
<MortgageInterest>7</MortgageInterest>
<ParameterIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d3p1:int>1</d3p1:int>
<d3p1:int>2</d3p1:int>
</ParameterIds>
<RealEstateTaxes>6</RealEstateTaxes>
<SuperEntityId>1</SuperEntityId>
<TaxId>sample string 3</TaxId>
</Entity1098CorrectionModel>
</ArrayOfEntity1098CorrectionModel>