GET api/TaxDocument
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| IdentityKey | globally unique identifier |
None. |
|
| AccountId | Collection of string |
None. |
|
| DocumentType | Collection of string |
None. |
|
| TaxYear | integer |
None. |
|
| Limit | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of TaxDocument| Name | Description | Type | Additional information |
|---|---|---|---|
| FileId | globally unique identifier |
None. |
|
| IdentityKey | globally unique identifier |
None. |
|
| AccountId | string |
None. |
|
| TaxYear | integer |
None. |
|
| DocumentType | string |
None. |
|
| DocumentDescription | string |
None. |
|
| ContentType | string |
None. |
|
| ContentLength | integer |
None. |
|
| OriginalFileName | string |
None. |
|
| UploadedOn | date |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"FileId": "2c8d7f37-cda9-49de-91e5-d85e62bce11d",
"IdentityKey": "e9290f42-1feb-4514-bba9-7bf9fd789101",
"AccountId": "sample string 3",
"TaxYear": 1,
"DocumentType": "sample string 4",
"DocumentDescription": "sample string 5",
"ContentType": "sample string 6",
"ContentLength": 1,
"OriginalFileName": "sample string 7",
"UploadedOn": "2026-05-04T00:25:43.0189287Z"
},
{
"FileId": "2c8d7f37-cda9-49de-91e5-d85e62bce11d",
"IdentityKey": "e9290f42-1feb-4514-bba9-7bf9fd789101",
"AccountId": "sample string 3",
"TaxYear": 1,
"DocumentType": "sample string 4",
"DocumentDescription": "sample string 5",
"ContentType": "sample string 6",
"ContentLength": 1,
"OriginalFileName": "sample string 7",
"UploadedOn": "2026-05-04T00:25:43.0189287Z"
}
]
application/xml, text/xml
Sample:
<ArrayOfTaxDocument xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Lilaham.TaxIdPOC.Models.API">
<TaxDocument>
<AccountId>sample string 3</AccountId>
<ContentLength>1</ContentLength>
<ContentType>sample string 6</ContentType>
<DocumentDescription>sample string 5</DocumentDescription>
<DocumentType>sample string 4</DocumentType>
<FileId>2c8d7f37-cda9-49de-91e5-d85e62bce11d</FileId>
<IdentityKey>e9290f42-1feb-4514-bba9-7bf9fd789101</IdentityKey>
<OriginalFileName>sample string 7</OriginalFileName>
<TaxYear>1</TaxYear>
<UploadedOn>2026-05-04T00:25:43.0189287+00:00</UploadedOn>
</TaxDocument>
<TaxDocument>
<AccountId>sample string 3</AccountId>
<ContentLength>1</ContentLength>
<ContentType>sample string 6</ContentType>
<DocumentDescription>sample string 5</DocumentDescription>
<DocumentType>sample string 4</DocumentType>
<FileId>2c8d7f37-cda9-49de-91e5-d85e62bce11d</FileId>
<IdentityKey>e9290f42-1feb-4514-bba9-7bf9fd789101</IdentityKey>
<OriginalFileName>sample string 7</OriginalFileName>
<TaxYear>1</TaxYear>
<UploadedOn>2026-05-04T00:25:43.0189287+00:00</UploadedOn>
</TaxDocument>
</ArrayOfTaxDocument>