# listLocationRevenueTransactions

Get paginated revenue transactions for a location

`GET /v2/locations/{locationid}/revenuetransactions`

**API:** Avalara MyLodgeTax API
**Tag:** Revenue
**API Version:** v1.2
**Base URL:** https://mylodgetaxapi-sbx.avalara.net
**Authentication:** API Key (`Authorization` in header)

Source: https://developer.avalara.com/products/mylodge/api/methods/Revenue/listLocationRevenueTransactions/

## Description

Returns a paginated list of revenue transactions for a location, filtered by date range.

## Parameters

| Name | Type | In | Required | Description |
|---|---|---|---|---|
| `locationid` | string | path | Yes | Unique location identifier assigned when posting a partnerLead (_locationId_). |
| `startDate` | string | query | Yes | Start date (inclusive) in YYYY-MM-DD format. |
| `endDate` | string | query | Yes | End date (inclusive) in YYYY-MM-DD format. |
| `skip` | integer | query | No | Number of records to skip. |
| `take` | integer | query | No | Number of records to take. |
| `sortColumn` | string | query | No | Column to sort by. |
| `sortDirection` | string | query | No | Sort direction. |

## Responses

| Status | Description | Schema |
|---|---|---|
| 200 | Paginated list of revenue transactions |  |
| 400 | Bad request (invalid date format or range) | `ErrorResponse` |
| 500 | Internal server error | `ErrorResponse` |

## Example Request

```bash
curl -X GET "https://mylodgetaxapi-sbx.avalara.net/v2/locations/{locationid}/revenuetransactions" \
  -H "Authorization: Basic <credentials>" \
  -H "Accept: application/json"
```