Skip to main content
POST
/
v6
/
reports
/
profitAndLoss
Profit and Loss
curl --request POST \
  --url https://sandbox.tight.com/v6/reports/profitAndLoss \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "grouping": {
    "date": "MONTHLY",
    "classSegmentLabelId": "cll_439512"
  },
  "filters": {
    "beginDate": "2025-01-01",
    "endDate": "2025-12-31",
    "classSegmentIds": [
      "<string>"
    ]
  },
  "exportType": "JSON",
  "recipients": {
    "emails": [
      "<string>"
    ],
    "ccEmails": [
      "<string>"
    ],
    "bccEmails": [
      "<string>"
    ]
  }
}
'
{
  "result": "SUCCESS",
  "data": {
    "json": [
      {
        "name": "2025-07-01 to 2025-12-03",
        "period": {
          "beginDate": "2025-07-01",
          "endDate": "2025-12-03"
        },
        "netIncome": 19970.89,
        "income": {
          "name": "Income",
          "total": 64386.16,
          "children": [
            {
              "name": "Services Income",
              "accountId": "gla_167242985",
              "accountNo": "41000",
              "total": 64386.16
            }
          ]
        },
        "cogs": {
          "name": "Cost of Services/Goods Sold",
          "total": 80.66,
          "children": [
            {
              "name": "Merchandise COGS",
              "accountId": "gla_167242995",
              "accountNo": "55020",
              "total": 80.66
            }
          ]
        },
        "grossProfit": 64305.5,
        "profitMargin": 99.87,
        "expenses": {
          "name": "Expenses",
          "total": 45725.17,
          "children": [
            {
              "name": "Automobile Expenses (not deductible if taking Mileage Deduction)",
              "accountId": "gla_167242999",
              "accountNo": "60020",
              "total": 360.33
            },
            {
              "name": "Business Licenses, Permits and Generic Taxes",
              "accountId": "gla_167243002",
              "accountNo": "60040",
              "total": 203.8
            },
            {
              "name": "Commissions and Fees",
              "accountId": "gla_167243005",
              "accountNo": "60060",
              "total": 1465.97
            },
            {
              "name": "Noncap. Computers, Mobile Devices, Servers and Related Hardware",
              "accountId": "gla_167243006",
              "accountNo": "60070",
              "total": -45.59
            },
            {
              "name": "Dues and Subscriptions",
              "accountId": "gla_167243011",
              "accountNo": "60110",
              "total": 539.38
            },
            {
              "name": "Insurance Expense",
              "accountId": "gla_167243013",
              "accountNo": "60130",
              "total": 183.8
            },
            {
              "name": "Interest Expense",
              "accountId": "gla_167243014",
              "accountNo": "60140",
              "total": 28.94
            },
            {
              "name": "Local Meals and Entertainment (50% Deductible)",
              "accountId": "gla_167243015",
              "accountNo": "60150",
              "total": 13418.29
            },
            {
              "name": "Local Meals and Entertainment (100% Deductible)",
              "accountId": "gla_167243016",
              "accountNo": "60155",
              "total": 967.01
            },
            {
              "name": "Office Supplies",
              "accountId": "gla_167243018",
              "accountNo": "60170",
              "total": 223.33
            },
            {
              "name": "Postage and Delivery",
              "accountId": "gla_167243027",
              "accountNo": "60230",
              "total": 5.99
            },
            {
              "name": "Rent Expense (Property)",
              "accountId": "gla_167243031",
              "accountNo": "60270",
              "total": 18750
            },
            {
              "name": "Supplies",
              "accountId": "gla_167243034",
              "accountNo": "60295",
              "total": 27.46
            },
            {
              "name": "Travel Expenses (excl. Meals)",
              "accountId": "gla_167243036",
              "accountNo": "60310",
              "total": 2501.14
            },
            {
              "name": "Utilities",
              "accountId": "gla_167243038",
              "accountNo": "60330",
              "total": 1499.77
            },
            {
              "name": "Uncategorized Expenses",
              "accountId": "gla_167243043",
              "accountNo": "65000",
              "total": 5595.55
            }
          ]
        },
        "netOperatingIncome": 18580.33,
        "operatingMargin": 28.86,
        "otherIncome": {
          "name": "Other Income",
          "total": 1400,
          "children": [
            {
              "name": "Other/Miscellaneous Income",
              "accountId": "gla_167243048",
              "accountNo": "74000",
              "total": 1400
            }
          ]
        },
        "otherExpenses": {
          "name": "Other Expenses",
          "total": 9.44,
          "children": [
            {
              "name": "Penalties, Interest and Settlements",
              "accountId": "gla_167243051",
              "accountNo": "82000",
              "total": 9.44
            }
          ]
        }
      }
    ],
    "meta": {
      "title": "Profit and Loss",
      "generatedOn": "2025-12-03T10:30:00",
      "generatedBy": "Joe LaForgia",
      "footerLine": "Generated on 12/03/2025 at 7:45:55 PM by Joseph LaForgia"
    }
  },
  "error": []
}

Authorizations

Authorization
string
header
required

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

Body

application/json
grouping
object

Grouping options for the balance sheet report

filters
object

Filters to apply to the balance sheet report

exportType
enum<string>

Export format for the balance sheet report

Available options:
JSON,
PDF,
XLSX
recipients
object

Email recipients for the balance sheet 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.