# Response summary

Source: https://developer.avalara.com/products/communications/integration-guides/communications-integration/xgx6383534939033/

Guide: Communications

# Response summary

**Element type: Required**

**Enpoints/models used:** [Invoice](https://developer.avalara.com/api-reference/communications/v2/models/Invoice/)

Your integration must provide a method for specifying whether summarized taxes for the entire invoice should be included in the response. This is done using the `summ` field in the [Invoice](https://developer.avalara.com/api-reference/communications/v2/models/Invoice/) model. This value defaults to `false` and can only be specified when Invoice Mode is enabled (`"invm": true`).

**View example**:

```
"inv": [
  {
    "doc": "StreamingContent1",
    "cmmt": false,
    "cust": 0,
    "date": "2021-01-01T12:00:00Z",
    "invm": true,
    "dtl": true,
    "summ": true,
    "acct": "Broadcaster",
    "custref": "Customer1234",
    "invn": "Invoice1234",
    "bcyc": "202010",
    "bpd": {
        "month": "10",
        "year": "2020"
    },
    "opt": [
        {
            "key": "1",
            "val": "StreamingSamples"
        }
    ],
    "bill": {
      "ctry": "USA",
      "addr": "11 West 53 Street",
      "city": "Manhattan",
      "st": "NY",
      "zip": "10019"
    },
    "itms": [
      {
        ...
      }
    ]
  }
] 
```