v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Terminations

List Offboardings (v2)

Lists offboardings for a company.

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage employments (employments)View offboarding requests (offboarding:read)Manage offboarding (offboarding:write)
get/v2/offboardings

Query parameters

employment_idstring

Filter by Employment ID

type'termination' | 'resignation' | 'cancellation' | 'relocation' | 'transfer' | 'conversion'

Filter by offboarding type.

include_confidentialboolean

By default, the results do not include confidential termination requests. Send include_confidential=true to include confidential requests in the response.

pageinteger

Starts fetching records after the given page

page_sizeinteger

Change the amount of records returned per page, defaults to 20, limited to 100

Response

Success

Example response

{
  "current_page": 1,
  "offboardings": [
    {
      "confidential": false,
      "employment_id": "1e74fdc2-7420-4eef-ab0a-b794cbbef4e1",
      "id": "ba310525-9282-40c9-8977-14d844bf891a",
      "inserted_at": "2023-12-01T10:30:00Z",
      "reason": "performance",
      "request": {
        "additional_comments": "Final paycheck to include unused PTO.",
        "agrees_to_pto_amount": true,
        "employee_awareness": {
          "date": "2023-11-15",
          "note": "Conversation held during 1:1."
        },
        "proposed_termination_date": "2024-01-15",
        "reason_description": "Sustained underperformance after improvement plan.",
        "risk_assessment_reasons": [
          "none_of_these"
        ],
        "will_challenge_termination": false,
        "will_challenge_termination_description": ""
      },
      "status": "pending_payment",
      "termination_date": "2024-01-15",
      "type": "termination"
    }
  ],
  "total_count": 1,
  "total_pages": 1
}