Apideck · Capability

Apideck Accounting API — Tax Rates

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

Run with Naftiko ApideckTax Rates

What You Can Do

GET
Taxratesall — Apideck List Tax Rates
/v1/accounting/tax-rates
POST
Taxratesadd — Apideck Create Tax Rate
/v1/accounting/tax-rates
GET
Taxratesone — Apideck Get Tax Rate
/v1/accounting/tax-rates/{id}
PATCH
Taxratesupdate — Apideck Update Tax Rate
/v1/accounting/tax-rates/{id}
DELETE
Taxratesdelete — Apideck Delete Tax Rate
/v1/accounting/tax-rates/{id}

MCP Tools

apideck-list-tax-rates

Apideck List Tax Rates

read-only idempotent
apideck-create-tax-rate

Apideck Create Tax Rate

apideck-get-tax-rate

Apideck Get Tax Rate

read-only idempotent
apideck-update-tax-rate

Apideck Update Tax Rate

idempotent
apideck-delete-tax-rate

Apideck Delete Tax Rate

idempotent

Capability Spec

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