Zylo · Capability

Zylo Enterprise API — Export Jobs

Zylo Enterprise API — Export Jobs. 2 operations. Lead operation: Zylo Create an export job. Self-contained Naftiko capability covering one Zylo business surface.

Run with Naftiko ZyloExport Jobs

What You Can Do

POST
Createexportjob — Zylo Create an export job
/v1/subscriptions//exportjobs
GET
Getexportjob — Zylo Get an export job
/v1/subscriptions//exportjobs/{exportjobid}

MCP Tools

zylo-create-export-job

Zylo Create an export job

zylo-get-export-job

Zylo Get an export job

read-only idempotent

Capability Spec

enterprise-export-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Zylo Enterprise API — Export Jobs
  description: 'Zylo Enterprise API — Export Jobs. 2 operations. Lead operation: Zylo Create an export job. Self-contained
    Naftiko capability covering one Zylo business surface.'
  tags:
  - Zylo
  - Export Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ZYLO_API_KEY: ZYLO_API_KEY
capability:
  consumes:
  - type: http
    namespace: enterprise-export-jobs
    baseUri: https://api.zylo.com/v1
    description: Zylo Enterprise API — Export Jobs business capability. Self-contained, no shared references.
    resources:
    - name: subscriptions---exportJobs
      path: /subscriptions/-/exportJobs
      operations:
      - name: createexportjob
        method: POST
        description: Zylo Create an export job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: subscriptions---exportJobs-exportJobId
      path: /subscriptions/-/exportJobs/{exportJobId}
      operations:
      - name: getexportjob
        method: GET
        description: Zylo Get an export job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: exportJobId
          in: path
          type: string
          description: The unique identifier of the export job.
          required: true
    authentication:
      type: bearer
      token: '{{env.ZYLO_API_KEY}}'
  exposes:
  - type: rest
    namespace: enterprise-export-jobs-rest
    port: 8080
    description: REST adapter for Zylo Enterprise API — Export Jobs. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/subscriptions//exportjobs
      name: subscriptions-exportjobs
      description: REST surface for subscriptions---exportJobs.
      operations:
      - method: POST
        name: createexportjob
        description: Zylo Create an export job
        call: enterprise-export-jobs.createexportjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/subscriptions//exportjobs/{exportjobid}
      name: subscriptions-exportjobs-exportjobid
      description: REST surface for subscriptions---exportJobs-exportJobId.
      operations:
      - method: GET
        name: getexportjob
        description: Zylo Get an export job
        call: enterprise-export-jobs.getexportjob
        with:
          exportJobId: rest.exportJobId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: enterprise-export-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Zylo Enterprise API — Export Jobs. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: zylo-create-export-job
      description: Zylo Create an export job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: enterprise-export-jobs.createexportjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: zylo-get-export-job
      description: Zylo Get an export job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: enterprise-export-jobs.getexportjob
      with:
        exportJobId: tools.exportJobId
      outputParameters:
      - type: object
        mapping: $.