Zylo · Capability

Zylo Enterprise API — Applications

Zylo Enterprise API — Applications. 3 operations. Lead operation: Zylo List applications. Self-contained Naftiko capability covering one Zylo business surface.

Run with Naftiko ZyloApplications

What You Can Do

GET
Listapplications — Zylo List applications
/v1/applications
GET
Getapplication — Zylo Get an application
/v1/applications/{applicationid}
PUT
Updateapplication — Zylo Update an application
/v1/applications/{applicationid}

MCP Tools

zylo-list-applications

Zylo List applications

read-only idempotent
zylo-get-application

Zylo Get an application

read-only idempotent
zylo-update-application

Zylo Update an application

idempotent

Capability Spec

enterprise-applications.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zylo Enterprise API — Applications
  description: 'Zylo Enterprise API — Applications. 3 operations. Lead operation: Zylo List applications. Self-contained Naftiko
    capability covering one Zylo business surface.'
  tags:
  - Zylo
  - Applications
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZYLO_API_KEY: ZYLO_API_KEY
capability:
  consumes:
  - type: http
    namespace: enterprise-applications
    baseUri: https://api.zylo.com/v1
    description: Zylo Enterprise API — Applications business capability. Self-contained, no shared references.
    resources:
    - name: applications
      path: /applications
      operations:
      - name: listapplications
        method: GET
        description: Zylo List applications
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pageSize
          in: query
          type: integer
          description: The maximum number of results to return per page.
        - name: pageToken
          in: query
          type: string
          description: A token returned from a previous list request to retrieve the next page of results.
        - name: custom_fields
          in: query
          type: object
          description: Filter applications by custom field values. Uses bracket notation such as custom_fields[boolean]=true.
    - name: applications-applicationId
      path: /applications/{applicationId}
      operations:
      - name: getapplication
        method: GET
        description: Zylo Get an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          description: The unique identifier of the application.
          required: true
      - name: updateapplication
        method: PUT
        description: Zylo Update an application
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: applicationId
          in: path
          type: string
          description: The unique identifier of the application.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ZYLO_API_KEY}}'
  exposes:
  - type: rest
    namespace: enterprise-applications-rest
    port: 8080
    description: REST adapter for Zylo Enterprise API — Applications. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/applications
      name: applications
      description: REST surface for applications.
      operations:
      - method: GET
        name: listapplications
        description: Zylo List applications
        call: enterprise-applications.listapplications
        with:
          pageSize: rest.pageSize
          pageToken: rest.pageToken
          custom_fields: rest.custom_fields
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/applications/{applicationid}
      name: applications-applicationid
      description: REST surface for applications-applicationId.
      operations:
      - method: GET
        name: getapplication
        description: Zylo Get an application
        call: enterprise-applications.getapplication
        with:
          applicationId: rest.applicationId
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateapplication
        description: Zylo Update an application
        call: enterprise-applications.updateapplication
        with:
          applicationId: rest.applicationId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: enterprise-applications-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zylo Enterprise API — Applications. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: zylo-list-applications
      description: Zylo List applications
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: enterprise-applications.listapplications
      with:
        pageSize: tools.pageSize
        pageToken: tools.pageToken
        custom_fields: tools.custom_fields
      outputParameters:
      - type: object
        mapping: $.
    - name: zylo-get-application
      description: Zylo Get an application
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: enterprise-applications.getapplication
      with:
        applicationId: tools.applicationId
      outputParameters:
      - type: object
        mapping: $.
    - name: zylo-update-application
      description: Zylo Update an application
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: enterprise-applications.updateapplication
      with:
        applicationId: tools.applicationId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.