Skip to main content

Get worker turnover historical report for a specific employer

POST 
/v1/reporting/:employer_id/reports/worker_turnover/historical

Retrieves historical turnover metrics by period: total/voluntary/involuntary turnover, headcount, rehires, and turnover rate. Period range is computed from to_date and period_granularity (e.g. 12 weeks, 12 months, 12 quarters, 12 years).

Request

Path Parameters

    employer_id stringrequired

    Use me (recommended) to resolve the employer associated with your OAuth credentials, or pass your numeric employer ID. The value must match the employer your token is issued for.

Query Parameters

    to_date stringrequired

    End date of the report (ISO 8601 format: YYYY-MM-DD). Period range is computed from this and period_granularity.

    period_granularity stringrequired

    Period granularity. Must be one of: WEEK, MONTH, QUARTER, YEAR

Responses

Successfully retrieved historical turnover report

Schema

    metadata

    object

    employer_id int32
    to_date string
    period_from string
    period_granularity string
    venue_ids int32[]
    area_ids int32[]
    generated_at date-time

    periods

    object[]

  • Array [

  • date string
    granularity string
    total_turnover int32
    voluntary_turnover int32
    involuntary_turnover int32
    headcount int32
    rehires int32
    turnover_rate double
  • ]

Loading...

Was this page helpful?