API Reference / Finance - ROI

Get meeting cost overview

get https://api.intelig.ai/api/v1/intelig/finance/roi/meetings

Auth: Authorization: ApiKey <key> (an API key sent as Bearer is rejected) or Authorization: Bearer <jwt> for a dashboard session. operationId: getMeetingCosts

Returns aggregate meeting cost data including total hours, total cost, count, average cost per meeting, and per-meeting breakdown. Cost = meeting duration × SUM(hourly rates) for budgeted attendees. Filters by from/to date range (max 90 days) and optional budgetId.

Example request

curl -X GET "https://api.intelig.ai/api/v1/intelig/finance/roi/meetings?from=string&to=string" \
  -H "Authorization: ApiKey $INTELIG_API_KEY"

Query parameters

NameTypeRequiredDescription
from string (date) yes
to string (date) yes
budgetId integer (int64) no

Response 200

application/json · ApiResponseMeetingCostOverviewDto

FieldTypeDescription
success boolean
message string
data MeetingCostOverviewDto

Status codes

  • 200 — Meeting costs returned
  • 400 — Invalid date range or missing org context
  • 401 — Authentication required
  • 403 — Insufficient permissions for Finance pillar
  • 429 — —

Every response is wrapped in { success, message, data }. A 4xx means the request is wrong — do not retry it unchanged. A 429 carries Retry-After in seconds.