# Test your setup

Source: https://developer.avalara.com/avatax-for-bevalc/configure-your-account/test-your-setup/

# Test your setup

Test your setup by running the [CreateTransaction API](https://developer.avalara.com/api-reference/avatax/rest/v2/methods/Transactions/CreateTransaction/). Below is a sample request.

```
curl    -X POST    -H 'Accept: application/json'    -H 'Authorization: Basic ${btoa(`:`)}'    -H 'Content-Type: application/json'    --data '{      "type":"SalesOrder",      "code": "12343439084",      "companyCode":"DEFAULT",      "customerCode":"13434",      "date":"2021-03-10",      "commit":false,      "lines": [        {          "number":"1",          "quantity":10,          "amount":100,          "taxCode":"PA2020300",          "itemCode":"12345",          "description":"Packaged alcohol wine",          "parameters":[              {                  "name":"AlcoholRouteType",                  "value":"DTC"              },              {                  "name":"RecipientName",                  "value":"John Smith"              },              {                  "name":"ContainerSize",                  "value":"0.75",                  "unit":"Litre"              },              {                  "name":"AlcoholContent",                  "value":"12.5",                  "unit":"Percentage"              },              {                  "name":"PackSize",                  "value":"12",                  "unit":"Count"              },              {                  "name":"NetVolume",                  "value":"750",                  "unit":"Millilitre"              }          ]        },      ],      "addresses": {        "shipFrom":{          "line1":"255 S King St",          "line2":"Suite 1200",          "city":"Seattle",          "region":"WA",          "country":"US",          "postalCode":"98104"        },        "shipTo":{          "line1":"2100 S Floyd St",          "city":"Louisville",          "region":"KY",          "country":"US",          "postalCode":"40292"        }      }    }'    'https://sandbox-rest.avatax.com/api/v2/transactions/create'
```

[Previous](/avatax-for-bevalc/configure-your-account/add-bevalc-location)

[Next](/avatax-for-bevalc/typical-transaction-workflow)