> For the complete documentation index, see [llms.txt](https://developer.nilvera.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.nilvera.com/en/nilvera-model/einvoice/exportcustomerinfo.md).

# ExportCustomerInfo

> This is the field where foreign buyer information is entered on IHRACAT invoices.

{% hint style="info" %}
The Export CustomerInfo object is derived from the Export CustomerInfo Dto object.
{% endhint %}

```csharp
public class ExportCustomerInfoDto
{
     public string TaxNumber { get; set; }
     public string LegalRegistrationName { get; set; }
     public string PersonName { get; set; }
     public string PersonSurName { get; set; }
     public string Address { get; set; }
     public string District { get; set; }
     public string City { get; set; }
     public string Country { get; set; }
     public string PostalCode { get; set; }
     public string Phone { get; set; }
     public string Fax { get; set; }
     public string Mail { get; set; }
     public string WebSite { get; set; }
}
```

### TaxNumber

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the tax identification number (VKN) of the foreign buyer's country will be entered.

### LegalRegistrationName

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the official title information of the foreign buyer's country will be entered.

### PersonName

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> The name of the foreign buyer is entered.

{% hint style="info" %}
This is used if the recipient is a foreign individual. It is a required field if the PersonSurName field is already filled.
{% endhint %}

### PersonSurname

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> The foreign recipient's last name is entered.

{% hint style="info" %}
This is used if the recipient is a foreign individual. It is a required field if the PersonName field is already filled.
{% endhint %}

### Address

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the foreign recipient's address information will be entered.

### District

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the foreign buyer's district information is entered.

### City

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the foreign buyer's city information is entered.

### Country

<mark style="color:blue;">`string`</mark>  <mark style="color:red;">`Zorunlu`</mark>

> This is the field where the foreign buyer's country information is entered.

### PostalCode

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the foreign recipient's postal code is entered.

### Phone

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> This is the field where the foreign recipient's phone number will be entered.

### Fax

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The foreign recipient's fax number is entered.

### Mail

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The email address of the foreign recipient is entered.

### WebSite

<mark style="color:blue;">`string`</mark>  <mark style="color:orange;">`Seçimli`</mark>

> The foreign buyer's website information is entered.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://developer.nilvera.com/en/nilvera-model/einvoice/exportcustomerinfo.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
