Apideck · Capability

Apideck Accounting API — Departments

Apideck Accounting API — Departments. 5 operations. Lead operation: Apideck List Departments. Self-contained Naftiko capability covering one Apideck business surface.

Run with Naftiko ApideckDepartments

What You Can Do

GET
Departmentsall — Apideck List Departments
/v1/accounting/departments
POST
Departmentsadd — Apideck Create Department
/v1/accounting/departments
GET
Departmentsone — Apideck Get Department
/v1/accounting/departments/{id}
PATCH
Departmentsupdate — Apideck Update Department
/v1/accounting/departments/{id}
DELETE
Departmentsdelete — Apideck Delete Department
/v1/accounting/departments/{id}

MCP Tools

apideck-list-departments

Apideck List Departments

read-only idempotent
apideck-create-department

Apideck Create Department

apideck-get-department

Apideck Get Department

read-only idempotent
apideck-update-department

Apideck Update Department

idempotent
apideck-delete-department

Apideck Delete Department

idempotent

Capability Spec

accounting-departments.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apideck Accounting API — Departments
  description: 'Apideck Accounting API — Departments. 5 operations. Lead operation: Apideck List Departments. Self-contained
    Naftiko capability covering one Apideck business surface.'
  tags:
  - Apideck
  - Departments
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIDECK_API_KEY: APIDECK_API_KEY
capability:
  consumes:
  - type: http
    namespace: accounting-departments
    baseUri: https://unify.apideck.com
    description: Apideck Accounting API — Departments business capability. Self-contained, no shared references.
    resources:
    - name: accounting-departments
      path: /accounting/departments
      operations:
      - name: departmentsall
        method: GET
        description: Apideck List Departments
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: departmentsadd
        method: POST
        description: Apideck Create Department
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: accounting-departments-id
      path: /accounting/departments/{id}
      operations:
      - name: departmentsone
        method: GET
        description: Apideck Get Department
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: departmentsupdate
        method: PATCH
        description: Apideck Update Department
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: departmentsdelete
        method: DELETE
        description: Apideck Delete Department
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.APIDECK_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: accounting-departments-rest
    port: 8080
    description: REST adapter for Apideck Accounting API — Departments. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accounting/departments
      name: accounting-departments
      description: REST surface for accounting-departments.
      operations:
      - method: GET
        name: departmentsall
        description: Apideck List Departments
        call: accounting-departments.departmentsall
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: departmentsadd
        description: Apideck Create Department
        call: accounting-departments.departmentsadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounting/departments/{id}
      name: accounting-departments-id
      description: REST surface for accounting-departments-id.
      operations:
      - method: GET
        name: departmentsone
        description: Apideck Get Department
        call: accounting-departments.departmentsone
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: departmentsupdate
        description: Apideck Update Department
        call: accounting-departments.departmentsupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: departmentsdelete
        description: Apideck Delete Department
        call: accounting-departments.departmentsdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: accounting-departments-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apideck Accounting API — Departments. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apideck-list-departments
      description: Apideck List Departments
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-departments.departmentsall
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-create-department
      description: Apideck Create Department
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: accounting-departments.departmentsadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-get-department
      description: Apideck Get Department
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-departments.departmentsone
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-update-department
      description: Apideck Update Department
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: accounting-departments.departmentsupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-delete-department
      description: Apideck Delete Department
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: accounting-departments.departmentsdelete
      outputParameters:
      - type: object
        mapping: $.