Skip to main content
POST
/
v6
/
reports
/
revenue
Revenue Report
curl --request POST \
  --url https://sandbox.tight.com/v6/reports/revenue \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "exportType": "JSON",
  "recipients": {
    "emails": [
      "<string>"
    ],
    "ccEmails": [
      "<string>"
    ],
    "bccEmails": [
      "<string>"
    ]
  },
  "accountingMethod": "CASH",
  "filters": {
    "beginDate": "2025-01-01",
    "endDate": "2025-12-31"
  },
  "grouping": {
    "classSegmentLabelId": "cll_439512",
    "column": "CUSTOMER"
  }
}
'
{
  "result": "SUCCESS",
  "data": {
    "json": [
      {
        "name": "East Region",
        "data": [
          {
            "name": "Jan 2025",
            "total": 150000,
            "count": 42,
            "data": [
              {
                "uri": "/v6/bankTransactions/query",
                "filters": {
                  "internal_key": "some_internal_key",
                  "some_other_field": 23434
                }
              }
            ]
          }
        ]
      }
    ],
    "url": "<string>",
    "meta": {
      "title": "<string>",
      "generatedOn": "2023-11-07T05:31:56Z",
      "generatedBy": "John Doe",
      "footerLine": "Generated by Tight"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.tight.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, see Authentication for more detail.

Body

application/json
exportType
enum<string>

Export format for the report

Available options:
JSON,
PDF,
XLSX
recipients
object

Email recipients for the report

accountingMethod
enum<string>

Accounting method to generate the report in. Defaults to the company's configured accounting method.

Available options:
CASH,
ACCRUAL
filters
object

Filters to apply to the report

grouping
object

Grouping options for the revenue report

Response

Success

result
enum<string>

The result of the action performed.

Available options:
SUCCESS,
FAILURE
data
object

The data generated by the action performed.