Yardi · Capability

Yardi Voyager API — Service Requests

Yardi Voyager API — Service Requests. 2 operations. Lead operation: Yardi Get service requests. Self-contained Naftiko capability covering one Yardi business surface.

Run with Naftiko YardiService Requests

What You Can Do

POST
Getservicerequestslogin — Yardi Get service requests
/v1/itfservicerequests-asmx/getservicerequests-login
POST
Importservicerequestslogin — Yardi Import service requests
/v1/itfservicerequests-asmx/importservicerequests-login

MCP Tools

yardi-get-service-requests

Yardi Get service requests

read-only
yardi-import-service-requests

Yardi Import service requests

Capability Spec

voyager-service-requests.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Yardi Voyager API — Service Requests
  description: 'Yardi Voyager API — Service Requests. 2 operations. Lead operation: Yardi Get service requests. Self-contained
    Naftiko capability covering one Yardi business surface.'
  tags:
  - Yardi
  - Service Requests
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    YARDI_API_KEY: YARDI_API_KEY
capability:
  consumes:
  - type: http
    namespace: voyager-service-requests
    baseUri: https://{server}.yardi.com/{clientUrl}/webservices
    description: Yardi Voyager API — Service Requests business capability. Self-contained, no shared references.
    resources:
    - name: ItfServiceRequests.asmx-GetServiceRequests_Login
      path: /ItfServiceRequests.asmx/GetServiceRequests_Login
      operations:
      - name: getservicerequestslogin
        method: POST
        description: Yardi Get service requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ItfServiceRequests.asmx-ImportServiceRequests_Login
      path: /ItfServiceRequests.asmx/ImportServiceRequests_Login
      operations:
      - name: importservicerequestslogin
        method: POST
        description: Yardi Import service requests
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.YARDI_USER}}'
      password: '{{env.YARDI_PASS}}'
  exposes:
  - type: rest
    namespace: voyager-service-requests-rest
    port: 8080
    description: REST adapter for Yardi Voyager API — Service Requests. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/itfservicerequests-asmx/getservicerequests-login
      name: itfservicerequests-asmx-getservicerequests-login
      description: REST surface for ItfServiceRequests.asmx-GetServiceRequests_Login.
      operations:
      - method: POST
        name: getservicerequestslogin
        description: Yardi Get service requests
        call: voyager-service-requests.getservicerequestslogin
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/itfservicerequests-asmx/importservicerequests-login
      name: itfservicerequests-asmx-importservicerequests-login
      description: REST surface for ItfServiceRequests.asmx-ImportServiceRequests_Login.
      operations:
      - method: POST
        name: importservicerequestslogin
        description: Yardi Import service requests
        call: voyager-service-requests.importservicerequestslogin
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: voyager-service-requests-mcp
    port: 9090
    transport: http
    description: MCP adapter for Yardi Voyager API — Service Requests. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: yardi-get-service-requests
      description: Yardi Get service requests
      hints:
        readOnly: true
        destructive: false
        idempotent: false
      call: voyager-service-requests.getservicerequestslogin
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: yardi-import-service-requests
      description: Yardi Import service requests
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: voyager-service-requests.importservicerequestslogin
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.