POST api/Customer/GetTaxPayerList
Request Information
URI Parameters
None.
Body Parameters
GetTaxPayerListRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| taxIdentificationNumber | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"taxIdentificationNumber": "sample string 1"
}
application/xml, text/xml
Sample:
<GetTaxPayerListRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Request"> <taxIdentificationNumber>sample string 1</taxIdentificationNumber> </GetTaxPayerListRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
GetTaxPayerListResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| TaxPayerList | Collection of TaxPayerItem |
None. |
Response Formats
application/json, text/json
Sample:
{
"TaxPayerList": [
{
"VKN": "sample string 1",
"Title": "sample string 2",
"CreatedDateTime": "2025-10-30T21:00:36.8038174+03:00"
},
{
"VKN": "sample string 1",
"Title": "sample string 2",
"CreatedDateTime": "2025-10-30T21:00:36.8038174+03:00"
}
]
}
application/xml, text/xml
Sample:
<GetTaxPayerListResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessLayer.Dto.Response">
<TaxPayerList>
<GetTaxPayerListResponse.TaxPayerItem>
<CreatedDateTime>2025-10-30T21:00:36.8038174+03:00</CreatedDateTime>
<Title>sample string 2</Title>
<VKN>sample string 1</VKN>
</GetTaxPayerListResponse.TaxPayerItem>
<GetTaxPayerListResponse.TaxPayerItem>
<CreatedDateTime>2025-10-30T21:00:36.8038174+03:00</CreatedDateTime>
<Title>sample string 2</Title>
<VKN>sample string 1</VKN>
</GetTaxPayerListResponse.TaxPayerItem>
</TaxPayerList>
</GetTaxPayerListResponse>