Sumo Logic · Capability

Sumo Logic API — archiveManagement

Sumo Logic API — archiveManagement. 4 operations. Lead operation: List Ingestion Jobs For All Archive Sources.. Self-contained Naftiko capability covering one Sumo Logic business surface.

Run with Naftiko Sumo LogicarchiveManagement

What You Can Do

GET
Listarchivejobscountpersource — List Ingestion Jobs For All Archive Sources.
/v1/v1/archive/jobs/count
GET
Listarchivejobsbysourceid — Get Ingestion Jobs For An Archive Source.
/v1/v1/archive/{sourceid}/jobs
POST
Createarchivejob — Create An Ingestion Job.
/v1/v1/archive/{sourceid}/jobs
DELETE
Deletearchivejob — Delete An Ingestion Job.
/v1/v1/archive/{sourceid}/jobs/{id}

MCP Tools

list-ingestion-jobs-all-archive

List Ingestion Jobs For All Archive Sources.

read-only idempotent
get-ingestion-jobs-archive-source

Get Ingestion Jobs For An Archive Source.

read-only idempotent
create-ingestion-job

Create An Ingestion Job.

delete-ingestion-job

Delete An Ingestion Job.

idempotent

Capability Spec

sumo-logic-archivemanagement.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sumo Logic API — archiveManagement
  description: 'Sumo Logic API — archiveManagement. 4 operations. Lead operation: List Ingestion Jobs For All Archive Sources..
    Self-contained Naftiko capability covering one Sumo Logic business surface.'
  tags:
  - Sumo Logic
  - archiveManagement
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUMO_LOGIC_API_KEY: SUMO_LOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: sumo-logic-archivemanagement
    baseUri: https://api.au.sumologic.com/api
    description: Sumo Logic API — archiveManagement business capability. Self-contained, no shared references.
    resources:
    - name: v1-archive-jobs-count
      path: /v1/archive/jobs/count
      operations:
      - name: listarchivejobscountpersource
        method: GET
        description: List Ingestion Jobs For All Archive Sources.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-archive-sourceId-jobs
      path: /v1/archive/{sourceId}/jobs
      operations:
      - name: listarchivejobsbysourceid
        method: GET
        description: Get Ingestion Jobs For An Archive Source.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sourceId
          in: path
          type: string
          description: The identifier of an Archive Source.
          required: true
        - name: limit
          in: query
          type: integer
          description: Limit the number of jobs returned in the response. The number of jobs returned may be less than the
            `limit`.
        - name: token
          in: query
          type: string
          description: Continuation token to get the next page of results. A page object with the next continuation token
            is returned in the response body. Subsequent GET requests sho
      - name: createarchivejob
        method: POST
        description: Create An Ingestion Job.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sourceId
          in: path
          type: string
          description: The identifier of the Archive Source for which the job is to be added.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-archive-sourceId-jobs-id
      path: /v1/archive/{sourceId}/jobs/{id}
      operations:
      - name: deletearchivejob
        method: DELETE
        description: Delete An Ingestion Job.
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: sourceId
          in: path
          type: string
          description: The identifier of the Archive Source.
          required: true
        - name: id
          in: path
          type: string
          description: The identifier of the ingestion job to delete.
          required: true
    authentication:
      type: basic
      username: '{{env.SUMO_LOGIC_USER}}'
      password: '{{env.SUMO_LOGIC_PASS}}'
  exposes:
  - type: rest
    namespace: sumo-logic-archivemanagement-rest
    port: 8080
    description: REST adapter for Sumo Logic API — archiveManagement. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/archive/jobs/count
      name: v1-archive-jobs-count
      description: REST surface for v1-archive-jobs-count.
      operations:
      - method: GET
        name: listarchivejobscountpersource
        description: List Ingestion Jobs For All Archive Sources.
        call: sumo-logic-archivemanagement.listarchivejobscountpersource
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/archive/{sourceid}/jobs
      name: v1-archive-sourceid-jobs
      description: REST surface for v1-archive-sourceId-jobs.
      operations:
      - method: GET
        name: listarchivejobsbysourceid
        description: Get Ingestion Jobs For An Archive Source.
        call: sumo-logic-archivemanagement.listarchivejobsbysourceid
        with:
          sourceId: rest.sourceId
          limit: rest.limit
          token: rest.token
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createarchivejob
        description: Create An Ingestion Job.
        call: sumo-logic-archivemanagement.createarchivejob
        with:
          sourceId: rest.sourceId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/archive/{sourceid}/jobs/{id}
      name: v1-archive-sourceid-jobs-id
      description: REST surface for v1-archive-sourceId-jobs-id.
      operations:
      - method: DELETE
        name: deletearchivejob
        description: Delete An Ingestion Job.
        call: sumo-logic-archivemanagement.deletearchivejob
        with:
          sourceId: rest.sourceId
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sumo-logic-archivemanagement-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sumo Logic API — archiveManagement. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-ingestion-jobs-all-archive
      description: List Ingestion Jobs For All Archive Sources.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-archivemanagement.listarchivejobscountpersource
      outputParameters:
      - type: object
        mapping: $.
    - name: get-ingestion-jobs-archive-source
      description: Get Ingestion Jobs For An Archive Source.
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-archivemanagement.listarchivejobsbysourceid
      with:
        sourceId: tools.sourceId
        limit: tools.limit
        token: tools.token
      outputParameters:
      - type: object
        mapping: $.
    - name: create-ingestion-job
      description: Create An Ingestion Job.
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sumo-logic-archivemanagement.createarchivejob
      with:
        sourceId: tools.sourceId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-ingestion-job
      description: Delete An Ingestion Job.
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: sumo-logic-archivemanagement.deletearchivejob
      with:
        sourceId: tools.sourceId
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.