Skip to main content
GET
/
api
/
v2
/
reporting
/
tools
/
Get company tools report
curl --request GET \
  --url https://paradigm.lighton.ai/api/v2/reporting/tools/ \
  --header 'Authorization: Bearer <token>'
{
  "reporting": [
    {
      "company": {
        "name": "<string>",
        "id": 123
      },
      "dates": [
        {
          "date": "2023-12-25",
          "tools": [
            {
              "name": "<string>",
              "count": 123
            }
          ],
          "third_party_tools": [
            {
              "name": "<string>",
              "count": 123
            }
          ]
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

company_id
integer

The unique identifier of the company (optional for admin users).

end_date
string<date>

The end date for the report (optional, defaults to today).

start_date
string<date>
required

The start date for the report.

Response

Successful response

reporting
object[]
required
I