# Point-of-order origin address (header and line levels)

Source: https://developer.avalara.com/marketplace-integration-guide/transactions/certification-requirements/poo-address/

**Endpoints/models used:** [AddressesModel](https://developer.avalara.com/api-reference/avatax/rest/v2/models/AddressesModel/)

If a point-of-order origin field is available in the source application, then include a point-of-order origin address in transaction requests. In some systems, this field is represented as the "Bill To" address. It represents the location from where your customer (home or business) placed the order to you. This is used to determine the establishment country of your customer. You can add a point-of-order origin address to your application using the `pointOfOrderOrigin` field in the [AddressesModel](https://developer.avalara.com/api-reference/avatax/rest/v2/models/AddressesModel/).

**Note:**   
Include point-of-origin-addresses on Sales type documents only.

[![Closed](https://avalara-devdocs-prod.mcoutput.com/avatax-for-marketplaces/Content/Skins/Default/Stylesheets/Images/transparent.gif)Example](javascript:void\(0\);)

```
"addresses": {  "shipFrom":{    "line1":"1600 Pennsylvania Ave",    "city":"Washington",    "region":"DC",    "country":"US",    "postalCode":"20006"  },  "pointOfOrderOrigin":{    "line1":"100 Ravine Ln NE",    "city":"Bainbridge Island",     region":"WA",    "country":"US",    "postalCode":"98110"  },  "shipTo":{    "line1":"915 F St Nw",    "city":"Washington, DC",    "region":"Washington, DC",    "country":"US",    "postalCode":"20004"  }} 
```