Avalara · Capability

Avalara AvaTax APIs — Notifications

Avalara AvaTax APIs — Notifications. 3 operations. Lead operation: Avalara ListNotifications. Self-contained Naftiko capability covering one Avalara business surface.

Run with Naftiko AvalaraNotifications

What You Can Do

GET
Get — Avalara ListNotifications
/v1/api/v2/notifications
GET
Get — Avalara GetNotification
/v1/api/v2/notifications/{id}
PUT
Put — Avalara DismissNotification
/v1/api/v2/notifications/{id}/dismiss

MCP Tools

avalara-listnotifications

Avalara ListNotifications

read-only idempotent
avalara-getnotification

Avalara GetNotification

read-only idempotent
avalara-dismissnotification

Avalara DismissNotification

idempotent

Capability Spec

avatax-apis-notifications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Avalara AvaTax APIs — Notifications
  description: 'Avalara AvaTax APIs — Notifications. 3 operations. Lead operation: Avalara ListNotifications. Self-contained
    Naftiko capability covering one Avalara business surface.'
  tags:
  - Avalara
  - Notifications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AVALARA_API_KEY: AVALARA_API_KEY
capability:
  consumes:
  - type: http
    namespace: avatax-apis-notifications
    baseUri: http://{{baseurl}}
    description: Avalara AvaTax APIs — Notifications business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-notifications
      path: /api/v2/notifications
      operations:
      - name: get
        method: GET
        description: Avalara ListNotifications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Avalara-Client
          in: header
          type: string
          description: Identifies the software you are using to call this API. For more information on the client header,
            see [Client Headers](https://developer.avalara.com/avatax/cli
    - name: api-v2-notifications-id
      path: /api/v2/notifications/{id}
      operations:
      - name: get
        method: GET
        description: Avalara GetNotification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Avalara-Client
          in: header
          type: string
          description: Identifies the software you are using to call this API. For more information on the client header,
            see [Client Headers](https://developer.avalara.com/avatax/cli
        - name: id
          in: path
          type: string
          required: true
    - name: api-v2-notifications-id-dismiss
      path: /api/v2/notifications/{id}/dismiss
      operations:
      - name: put
        method: PUT
        description: Avalara DismissNotification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: X-Avalara-Client
          in: header
          type: string
          description: Identifies the software you are using to call this API. For more information on the client header,
            see [Client Headers](https://developer.avalara.com/avatax/cli
        - name: id
          in: path
          type: string
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: basic
      username: '{{env.AVALARA_USER}}'
      password: '{{env.AVALARA_PASS}}'
  exposes:
  - type: rest
    namespace: avatax-apis-notifications-rest
    port: 8080
    description: REST adapter for Avalara AvaTax APIs — Notifications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/api/v2/notifications
      name: api-v2-notifications
      description: REST surface for api-v2-notifications.
      operations:
      - method: GET
        name: get
        description: Avalara ListNotifications
        call: avatax-apis-notifications.get
        with:
          X-Avalara-Client: rest.X-Avalara-Client
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/notifications/{id}
      name: api-v2-notifications-id
      description: REST surface for api-v2-notifications-id.
      operations:
      - method: GET
        name: get
        description: Avalara GetNotification
        call: avatax-apis-notifications.get
        with:
          X-Avalara-Client: rest.X-Avalara-Client
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/notifications/{id}/dismiss
      name: api-v2-notifications-id-dismiss
      description: REST surface for api-v2-notifications-id-dismiss.
      operations:
      - method: PUT
        name: put
        description: Avalara DismissNotification
        call: avatax-apis-notifications.put
        with:
          X-Avalara-Client: rest.X-Avalara-Client
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: avatax-apis-notifications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Avalara AvaTax APIs — Notifications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: avalara-listnotifications
      description: Avalara ListNotifications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: avatax-apis-notifications.get
      with:
        X-Avalara-Client: tools.X-Avalara-Client
      outputParameters:
      - type: object
        mapping: $.
    - name: avalara-getnotification
      description: Avalara GetNotification
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: avatax-apis-notifications.get
      with:
        X-Avalara-Client: tools.X-Avalara-Client
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: avalara-dismissnotification
      description: Avalara DismissNotification
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: avatax-apis-notifications.put
      with:
        X-Avalara-Client: tools.X-Avalara-Client
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.