Deel · Capability

Deel Global Payroll API — Adjustments

Self-contained Naftiko capability for adding gross-to-net adjustments to a worker's pay.

Deel Global Payroll API — Adjustments is a Naftiko capability published by Deel, one of 20 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET and POST methods rooted at /v1/gp/adjustments.

Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Deel, Payroll, Global Payroll, and Adjustments.

Run with Naftiko DeelPayrollGlobal PayrollAdjustments

What You Can Do

GET
Listadjustments — List adjustments.
/v1/gp/adjustments
POST
Createadjustment — Create adjustment.
/v1/gp/adjustments

Capability Spec

payroll-adjustments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Deel Global Payroll API — Adjustments
  description: Self-contained Naftiko capability for adding gross-to-net adjustments to a worker's pay.
  tags:
  - Deel
  - Payroll
  - Global Payroll
  - Adjustments
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    DEEL_API_TOKEN: DEEL_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: payroll-adjustments
    baseUri: https://api.letsdeel.com/rest/v2
    description: Deel Payroll Adjustments capability.
    resources:
    - name: adjustments
      path: /gp/adjustments
      operations:
      - name: listAdjustments
        method: GET
        description: List payroll adjustments.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: payroll_event_id, in: query, type: string, required: false }
        - { name: worker_id, in: query, type: string, required: false }
      - name: createAdjustment
        method: POST
        description: Add a payroll adjustment (bonus, deduction, reimbursement, etc.).
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: body, in: body, type: object, required: true }
        - { name: Idempotency-Key, in: header, type: string, required: false }
    authentication:
      type: bearer
      value: '{{env.DEEL_API_TOKEN}}'
      placement: header
  exposes:
  - type: rest
    namespace: payroll-adjustments-rest
    port: 8080
    description: REST adapter for payroll adjustments.
    resources:
    - path: /v1/gp/adjustments
      name: adjustments
      description: REST surface for payroll adjustments.
      operations:
      - method: GET
        name: listAdjustments
        description: List adjustments.
        call: payroll-adjustments.listAdjustments
        with: { payroll_event_id: rest.query.payroll_event_id, worker_id: rest.query.worker_id }
      - method: POST
        name: createAdjustment
        description: Create adjustment.
        call: payroll-adjustments.createAdjustment
        with: { body: rest.body, Idempotency-Key: rest.header.idempotency_key }