Skip to main content

Get worker turnover totals for a specific employer

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

Retrieves aggregate turnover metrics for a single period: beginning/end headcount, total/voluntary/involuntary turnover, headcount reduction, new hires, rehires, and turnover rate. Powers the 'At a Glance' and 'Headcount Variation' UI sections.

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

    from_date stringrequired

    Start date for the period (ISO 8601 format: YYYY-MM-DD)

    to_date stringrequired

    End date for the period (ISO 8601 format: YYYY-MM-DD)

Responses

Successfully retrieved turnover totals

Schema

    request

    object

    employer_id int32
    deployment_code string
    from_date string
    to_date string

    venue_and_area_ids

    object[]

  • Array [

  • venue_id int32required

    The venue ID

    area_ids int32[]

    List of area IDs within this venue. Omit/empty = all areas, [0] = venue-level only, [5843] = specific area(s), [0, 5843] = venue-level + specific. Note: 0 represents NULL areas.

  • ]

  • totals

    object

    beginning_headcount int32
    total_turnover int32
    voluntary_turnover int32
    involuntary_turnover int32
    headcount_reduction int32
    new_hires int32
    rehires int32
    new_and_returning_hires int32
    subtotal int32
    end_headcount int32
    turnover_rate double

    metadata

    object

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

Was this page helpful?