Apideck · Capability

Apideck Accounting API — Journal Entries

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

Run with Naftiko ApideckJournal Entries

What You Can Do

GET
Journalentriesall — Apideck List Journal Entries
/v1/accounting/journal-entries
POST
Journalentriesadd — Apideck Create Journal Entry
/v1/accounting/journal-entries
GET
Journalentriesone — Apideck Get Journal Entry
/v1/accounting/journal-entries/{id}
PATCH
Journalentriesupdate — Apideck Update Journal Entry
/v1/accounting/journal-entries/{id}
DELETE
Journalentriesdelete — Apideck Delete Journal Entry
/v1/accounting/journal-entries/{id}

MCP Tools

apideck-list-journal-entries

Apideck List Journal Entries

read-only idempotent
apideck-create-journal-entry

Apideck Create Journal Entry

apideck-get-journal-entry

Apideck Get Journal Entry

read-only idempotent
apideck-update-journal-entry

Apideck Update Journal Entry

idempotent
apideck-delete-journal-entry

Apideck Delete Journal Entry

idempotent

Capability Spec

accounting-journal-entries.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apideck Accounting API — Journal Entries
  description: 'Apideck Accounting API — Journal Entries. 5 operations. Lead operation: Apideck List Journal Entries. Self-contained
    Naftiko capability covering one Apideck business surface.'
  tags:
  - Apideck
  - Journal Entries
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIDECK_API_KEY: APIDECK_API_KEY
capability:
  consumes:
  - type: http
    namespace: accounting-journal-entries
    baseUri: https://unify.apideck.com
    description: Apideck Accounting API — Journal Entries business capability. Self-contained, no shared references.
    resources:
    - name: accounting-journal-entries
      path: /accounting/journal-entries
      operations:
      - name: journalentriesall
        method: GET
        description: Apideck List Journal Entries
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: journalentriesadd
        method: POST
        description: Apideck Create Journal Entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: accounting-journal-entries-id
      path: /accounting/journal-entries/{id}
      operations:
      - name: journalentriesone
        method: GET
        description: Apideck Get Journal Entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: journalentriesupdate
        method: PATCH
        description: Apideck Update Journal Entry
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: journalentriesdelete
        method: DELETE
        description: Apideck Delete Journal Entry
        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-journal-entries-rest
    port: 8080
    description: REST adapter for Apideck Accounting API — Journal Entries. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/accounting/journal-entries
      name: accounting-journal-entries
      description: REST surface for accounting-journal-entries.
      operations:
      - method: GET
        name: journalentriesall
        description: Apideck List Journal Entries
        call: accounting-journal-entries.journalentriesall
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: journalentriesadd
        description: Apideck Create Journal Entry
        call: accounting-journal-entries.journalentriesadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounting/journal-entries/{id}
      name: accounting-journal-entries-id
      description: REST surface for accounting-journal-entries-id.
      operations:
      - method: GET
        name: journalentriesone
        description: Apideck Get Journal Entry
        call: accounting-journal-entries.journalentriesone
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: journalentriesupdate
        description: Apideck Update Journal Entry
        call: accounting-journal-entries.journalentriesupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: journalentriesdelete
        description: Apideck Delete Journal Entry
        call: accounting-journal-entries.journalentriesdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: accounting-journal-entries-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apideck Accounting API — Journal Entries. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: apideck-list-journal-entries
      description: Apideck List Journal Entries
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-journal-entries.journalentriesall
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-create-journal-entry
      description: Apideck Create Journal Entry
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: accounting-journal-entries.journalentriesadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-get-journal-entry
      description: Apideck Get Journal Entry
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: accounting-journal-entries.journalentriesone
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-update-journal-entry
      description: Apideck Update Journal Entry
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: accounting-journal-entries.journalentriesupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-delete-journal-entry
      description: Apideck Delete Journal Entry
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: accounting-journal-entries.journalentriesdelete
      outputParameters:
      - type: object
        mapping: $.