Deel · Capability

Deel Core API — Invoice Adjustments

Self-contained Naftiko capability for managing contractor invoice line items.

Deel Core API — Invoice 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/invoice-adjustments.

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

Tagged areas include Deel, Invoices, and Contractors.

Run with Naftiko DeelInvoicesContractors

What You Can Do

GET
Listinvoiceadjustments — List invoice adjustments.
/v1/invoice-adjustments
POST
Createinvoiceadjustment — Create invoice adjustment.
/v1/invoice-adjustments

Capability Spec

core-invoice-adjustments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Deel Core API — Invoice Adjustments
  description: Self-contained Naftiko capability for managing contractor invoice line items.
  tags:
  - Deel
  - Invoices
  - Contractors
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    DEEL_API_TOKEN: DEEL_API_TOKEN
capability:
  consumes:
  - type: http
    namespace: core-invoice-adjustments
    baseUri: https://api.letsdeel.com/rest/v2
    description: Deel Invoice Adjustments capability.
    resources:
    - name: invoice-adjustments
      path: /invoice-adjustments
      operations:
      - name: listInvoiceAdjustments
        method: GET
        description: List invoice adjustments across contracts.
        outputRawFormat: json
        outputParameters:
        - { name: result, type: object, value: $. }
        inputParameters:
        - { name: contract_id, in: query, type: string, required: false }
        - { name: status, in: query, type: string, required: false }
      - name: createInvoiceAdjustment
        method: POST
        description: Create a contractor invoice adjustment (bonus, deduction, expense, 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: core-invoice-adjustments-rest
    port: 8080
    description: REST adapter for Deel Invoice Adjustments.
    resources:
    - path: /v1/invoice-adjustments
      name: invoice-adjustments
      description: REST surface for invoice adjustments.
      operations:
      - method: GET
        name: listInvoiceAdjustments
        description: List invoice adjustments.
        call: core-invoice-adjustments.listInvoiceAdjustments
        with: { contract_id: rest.query.contract_id, status: rest.query.status }
      - method: POST
        name: createInvoiceAdjustment
        description: Create invoice adjustment.
        call: core-invoice-adjustments.createInvoiceAdjustment
        with: { body: rest.body, Idempotency-Key: rest.header.idempotency_key }