v1

latestOpenAPI 3.1.02026-07-242735131.1 MB
Terminations

Create Offboarding

Creates an Offboarding request

Scopes

CategoryRead only ScopeWrite only Scope (read access implicit)
Manage employments (employments)-Manage offboarding (offboarding:write)
post/v1/offboardings

Request body

employment_idstring required

The unique identifier (UUID) of the employment to be terminated.

type'termination' required

The type of the offboarding request. For now, only termination is allowed.

Example request

{
  "employment_id": "5e55386e-4f4f-4def-92f4-bdc19a5ce77d",
  "termination_details": {
    "additional_comments": "additional comments regarding the termination reason",
    "confidential": false,
    "employee_awareness": {
      "date": "2023-12-12",
      "note": "optional text to add details"
    },
    "proposed_termination_date": "2023-12-20",
    "reason_description": "termination reason",
    "risk_assessment_reasons": [
      "pregnant_or_breastfeeding",
      "family_leave"
    ],
    "termination_reason": "workforce_reduction",
    "termination_reason_files": [
      {
        "content": "UGVyaW9kIEVuZCBEYXRlLFBheSBEYXRlLEVtcG...5jZSBPZiBSZXNpZGVuYdXJyZW50LEFsbG93",
        "name": "termination_letter.pdf"
      }
    ],
    "will_challenge_termination": true,
    "will_challenge_termination_description": "additional details for the offboarding risk assessment"
  },
  "type": "termination"
}

Response

Success

Example response

{
  "data": {
    "offboarding": {
      "additional_comments": "additional comments regarding the termination reason",
      "agrees_to_pto_amount": "true",
      "confidential": false,
      "employee_awareness": {
        "date": "2023-12-12",
        "note": "optional text to add details"
      },
      "employment_id": "1e74fdc2-7420-4eef-ab0a-b794cbbef4e1",
      "id": "ba310525-9282-40c9-8977-14d844bf891a",
      "offboarding_id": "71a95754-f8f7-4763-97b4-ae20c73477a3",
      "proposed_termination_date": "2023-12-20",
      "reason_description": "They had some performance issues and mismatched expectations.",
      "requested_by": "5a31f3c1-d7a7-4311-89cb-928959d3d540",
      "risk_assessment_reasons": [
        "pregnant_or_breastfeeding",
        "family_leave"
      ],
      "status": "submitted",
      "submitted_at": "2023-04-13T13:35:06Z",
      "termination_date": "2023-12-20",
      "termination_reason": "workforce_reduction",
      "type": "termination",
      "will_challenge_termination": true,
      "will_challenge_termination_description": "additional details for the offboarding risk assessment"
    }
  }
}