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

Source: https://developer.avalara.com/ecommerce-integration-guide/transactions/certification-requirements/poa-address/

**Element type:** Conditional

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

If a point-of-order acceptance 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 From" address. It specifies the location where the order was accepted by your supplier, such as a call center, business office where purchase orders are accepted, and server locations where orders are processed and accepted. You can add a point-of-order acceptance address to your application using the `pointOfOrderAcceptance` field in the [AddressesModel](https://developer.avalara.com/api-reference/avatax/rest/v2/models/AddressesModel/).

**Note:**   
Include this address on purchase type documents only.

[![Closed](https://avalara-devdocs-prod.mcoutput.com/avatax-for-ecom/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"  },  "pointOfOrginAcceptance":{    "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"  }} 
```