HR Partner · Capability

HR Partner — Checklists

HR Partner — Checklists. Read onboarding and offboarding checklists and reminders.

HR Partner — Checklists is a Naftiko capability published by HR Partner, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 5 operations.

The capability includes 5 state-changing operations. Lead operation: List onboarding/offboarding checklists. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include HR Partner, Checklists, Onboarding, and Reminders.

Run with Naftiko HR PartnerChecklistsOnboardingReminders

MCP Tools

list_checklists

List onboarding/offboarding checklists

list_reminders

List user reminders

get_reminder

Get a reminder by id

update_reminder

Update a reminder by id

delete_reminder

Delete a reminder by id

Capability Spec

hr-partner-checklists.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: HR Partner — Checklists
  description: 'HR Partner — Checklists. Read onboarding and offboarding checklists and reminders.'
  tags:
    - HR Partner
    - Checklists
    - Onboarding
    - Reminders
  created: '2026-05-23'
  modified: '2026-05-23'
binds:
  - namespace: env
    keys:
      HR_PARTNER_API_KEY: HR_PARTNER_API_KEY
capability:
  consumes:
    - type: http
      namespace: hr-partner-checklists
      baseUri: https://api.hrpartner.io
      description: HR Partner Checklists business capability.
      resources:
        - name: checklist
          path: /checklist
          operations:
            - { name: listChecklists, method: GET, description: List Checklists, outputRawFormat: json, outputParameters: [{ name: result, type: array, value: '$.' }] }
        - name: reminders
          path: /reminders
          operations:
            - { name: listReminders, method: GET, description: List Reminders, outputRawFormat: json, outputParameters: [{ name: result, type: array, value: '$.' }] }
        - name: reminder
          path: /reminder/{id}
          operations:
            - { name: getReminder, method: GET, description: Get Reminder, outputRawFormat: json, outputParameters: [{ name: result, type: object, value: '$.' }] }
            - { name: updateReminder, method: POST, description: Update Reminder, outputRawFormat: json, outputParameters: [{ name: result, type: object, value: '$.' }] }
            - { name: deleteReminder, method: DELETE, description: Delete Reminder, outputRawFormat: json, outputParameters: [{ name: result, type: object, value: '$.' }] }
      authentication:
        type: header
        header: x-api-key
        value: '{{env.HR_PARTNER_API_KEY}}'
  exposes:
    - type: mcp
      namespace: hr-partner-checklists-mcp
      port: 9090
      transport: http
      description: MCP adapter for HR Partner Checklists.
      tools:
        - { name: list_checklists, description: List onboarding/offboarding checklists, call: hr-partner-checklists.listChecklists }
        - { name: list_reminders, description: List user reminders, call: hr-partner-checklists.listReminders }
        - { name: get_reminder, description: Get a reminder by id, call: hr-partner-checklists.getReminder }
        - { name: update_reminder, description: Update a reminder by id, call: hr-partner-checklists.updateReminder }
        - { name: delete_reminder, description: Delete a reminder by id, call: hr-partner-checklists.deleteReminder }