meta {
  name: Create Employee Deduction
  type: POST
  body: json
}

headers {
  Authorization: Bearer {{token}}
  X-Company-Id: {{company_uuid}}
  Accept: application/json
  Content-Type: application/json
}

url: {{base_url}}/api/v1/payroll/employee-deductions

body: json {
  {
    "employee_id": 123,
    "type": "loan",
    "total_amount": 12000,
    "installment_amount": 1000,
    "start_month": 1,
    "start_year": 2026,
    "remarks": "Emergency loan for medical expenses"
  }
}