Apideck · Capability

Apideck Accounting API — Bank Accounts

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

Run with Naftiko ApideckBank Accounts

What You Can Do

GET
Bankaccountsall — Apideck List Bank Accounts
/v1/accounting/bank-accounts
POST
Bankaccountsadd — Apideck Create Bank Account
/v1/accounting/bank-accounts
GET
Bankaccountsone — Apideck Get Bank Account
/v1/accounting/bank-accounts/{id}
PATCH
Bankaccountsupdate — Apideck Update Bank Account
/v1/accounting/bank-accounts/{id}
DELETE
Bankaccountsdelete — Apideck Delete Bank Account
/v1/accounting/bank-accounts/{id}

MCP Tools

apideck-list-bank-accounts

Apideck List Bank Accounts

read-only idempotent
apideck-create-bank-account

Apideck Create Bank Account

apideck-get-bank-account

Apideck Get Bank Account

read-only idempotent
apideck-update-bank-account

Apideck Update Bank Account

idempotent
apideck-delete-bank-account

Apideck Delete Bank Account

idempotent

Capability Spec

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