# Send the destination address as an optional line-level data element

Source: https://developer.avalara.com/address-validation/wwh4861482212743/

# Send the destination address as an optional line-level data element

**Element type**: Suggested

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

Your integration should provide a method for merchants to enter a destination address at the line-level of transactions.

The example below shows a simple [CreateTransaction](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Transactions/CreateTransaction/) request where the destination address is at the line-level.

**View example**:

```
{
  "lines": [
    {
      "number": "1",
      "quantity": 1,
      "amount": 100,
      "taxCode": "P0000000",
      "itemCode": "Test SKU",
      "description": "Test Item Description",
      "discounted": false,
      "addresses": {
        "shipTo": {
          "line1": "915 F St Nw",
          "city": "Washington",
          "region": "DC",
          "country": "US",
          "postalCode": "20004"
        },
        "shipFrom": {
          "line1": "1600 Pennsylvania Ave",
          "city": "Washington",
          "region": "DC",
          "country": "US",
          "postalCode": "20004"
        }
      }
    }
  ],
  "type": "SalesOrder",
  "companyCode": "DEFAULT",
  "date": "2024-08-30",
  "customerCode": "Test Customer ID",
  "commit": false,
  "currencyCode": "USD"
}
```