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": "462471c4-5071-4506-8b49-32d35478e959",
"IdentityKey": "68dbe314-db74-4ad7-9e85-da118aa9f2dd",
"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-04-04T11:31:12.5877611Z"
},
{
"FileId": "462471c4-5071-4506-8b49-32d35478e959",
"IdentityKey": "68dbe314-db74-4ad7-9e85-da118aa9f2dd",
"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-04-04T11:31:12.5877611Z"
}
]
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>462471c4-5071-4506-8b49-32d35478e959</FileId>
<IdentityKey>68dbe314-db74-4ad7-9e85-da118aa9f2dd</IdentityKey>
<OriginalFileName>sample string 7</OriginalFileName>
<TaxYear>1</TaxYear>
<UploadedOn>2026-04-04T11:31:12.5877611+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>462471c4-5071-4506-8b49-32d35478e959</FileId>
<IdentityKey>68dbe314-db74-4ad7-9e85-da118aa9f2dd</IdentityKey>
<OriginalFileName>sample string 7</OriginalFileName>
<TaxYear>1</TaxYear>
<UploadedOn>2026-04-04T11:31:12.5877611+00:00</UploadedOn>
</TaxDocument>
</ArrayOfTaxDocument>