Avalara · Capability

Avalara MyLodgeTax API — Properties

Avalara MyLodgeTax API — Properties. 2 operations. Lead operation: Avalara List Registered Properties. Self-contained Naftiko capability covering one Avalara business surface.

Run with Naftiko AvalaraProperties

What You Can Do

GET
Listproperties — Avalara List Registered Properties
/v1/properties
POST
Registerproperty — Avalara Register a Rental Property
/v1/properties

MCP Tools

avalara-list-registered-properties

Avalara List Registered Properties

read-only idempotent
avalara-register-rental-property

Avalara Register a Rental Property

Capability Spec

mylodgetax-properties.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Avalara MyLodgeTax API — Properties
  description: 'Avalara MyLodgeTax API — Properties. 2 operations. Lead operation: Avalara List Registered Properties. Self-contained
    Naftiko capability covering one Avalara business surface.'
  tags:
  - Avalara
  - Properties
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    AVALARA_API_KEY: AVALARA_API_KEY
capability:
  consumes:
  - type: http
    namespace: mylodgetax-properties
    baseUri: https://api.avalara.com/mylodgetax/v1
    description: Avalara MyLodgeTax API — Properties business capability. Self-contained, no shared references.
    resources:
    - name: properties
      path: /properties
      operations:
      - name: listproperties
        method: GET
        description: Avalara List Registered Properties
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: registerproperty
        method: POST
        description: Avalara Register a Rental Property
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.AVALARA_API_KEY}}'
  exposes:
  - type: rest
    namespace: mylodgetax-properties-rest
    port: 8080
    description: REST adapter for Avalara MyLodgeTax API — Properties. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/properties
      name: properties
      description: REST surface for properties.
      operations:
      - method: GET
        name: listproperties
        description: Avalara List Registered Properties
        call: mylodgetax-properties.listproperties
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: registerproperty
        description: Avalara Register a Rental Property
        call: mylodgetax-properties.registerproperty
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: mylodgetax-properties-mcp
    port: 9090
    transport: http
    description: MCP adapter for Avalara MyLodgeTax API — Properties. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: avalara-list-registered-properties
      description: Avalara List Registered Properties
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: mylodgetax-properties.listproperties
      outputParameters:
      - type: object
        mapping: $.
    - name: avalara-register-rental-property
      description: Avalara Register a Rental Property
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: mylodgetax-properties.registerproperty
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.