Gainsight · Capability

Gainsight CS Bulk API — Jobs

Gainsight CS Bulk API — Jobs. 4 operations. Lead operation: Gainsight Create a bulk job. Self-contained Naftiko capability covering one Gainsight business surface.

Run with Naftiko GainsightJobs

What You Can Do

POST
Createbulkjob — Gainsight Create a bulk job
/v1/bulk/jobs
GET
Listbulkjobs — Gainsight List bulk jobs
/v1/bulk/jobs
GET
Getbulkjob — Gainsight Get bulk job status
/v1/bulk/jobs/{jobid}
GET
Getbulkjoberrors — Gainsight Get bulk job errors
/v1/bulk/jobs/{jobid}/errors

MCP Tools

gainsight-create-bulk-job

Gainsight Create a bulk job

gainsight-list-bulk-jobs

Gainsight List bulk jobs

read-only idempotent
gainsight-get-bulk-job-status

Gainsight Get bulk job status

read-only idempotent
gainsight-get-bulk-job-errors

Gainsight Get bulk job errors

read-only idempotent

Capability Spec

cs-bulk-jobs.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Gainsight CS Bulk API — Jobs
  description: 'Gainsight CS Bulk API — Jobs. 4 operations. Lead operation: Gainsight Create a bulk job. Self-contained Naftiko
    capability covering one Gainsight business surface.'
  tags:
  - Gainsight
  - Jobs
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GAINSIGHT_API_KEY: GAINSIGHT_API_KEY
capability:
  consumes:
  - type: http
    namespace: cs-bulk-jobs
    baseUri: https://{domain}.gainsightcloud.com/v1
    description: Gainsight CS Bulk API — Jobs business capability. Self-contained, no shared references.
    resources:
    - name: bulk-jobs
      path: /bulk/jobs
      operations:
      - name: createbulkjob
        method: POST
        description: Gainsight Create a bulk job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listbulkjobs
        method: GET
        description: Gainsight List bulk jobs
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
          description: Filter by job status
        - name: limit
          in: query
          type: integer
          description: Maximum number of jobs to return
        - name: offset
          in: query
          type: integer
          description: Offset for pagination
    - name: bulk-jobs-jobId
      path: /bulk/jobs/{jobId}
      operations:
      - name: getbulkjob
        method: GET
        description: Gainsight Get bulk job status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: bulk-jobs-jobId-errors
      path: /bulk/jobs/{jobId}/errors
      operations:
      - name: getbulkjoberrors
        method: GET
        description: Gainsight Get bulk job errors
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: accessKey
      value: '{{env.GAINSIGHT_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: cs-bulk-jobs-rest
    port: 8080
    description: REST adapter for Gainsight CS Bulk API — Jobs. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/bulk/jobs
      name: bulk-jobs
      description: REST surface for bulk-jobs.
      operations:
      - method: POST
        name: createbulkjob
        description: Gainsight Create a bulk job
        call: cs-bulk-jobs.createbulkjob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listbulkjobs
        description: Gainsight List bulk jobs
        call: cs-bulk-jobs.listbulkjobs
        with:
          status: rest.status
          limit: rest.limit
          offset: rest.offset
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bulk/jobs/{jobid}
      name: bulk-jobs-jobid
      description: REST surface for bulk-jobs-jobId.
      operations:
      - method: GET
        name: getbulkjob
        description: Gainsight Get bulk job status
        call: cs-bulk-jobs.getbulkjob
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bulk/jobs/{jobid}/errors
      name: bulk-jobs-jobid-errors
      description: REST surface for bulk-jobs-jobId-errors.
      operations:
      - method: GET
        name: getbulkjoberrors
        description: Gainsight Get bulk job errors
        call: cs-bulk-jobs.getbulkjoberrors
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: cs-bulk-jobs-mcp
    port: 9090
    transport: http
    description: MCP adapter for Gainsight CS Bulk API — Jobs. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: gainsight-create-bulk-job
      description: Gainsight Create a bulk job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: cs-bulk-jobs.createbulkjob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: gainsight-list-bulk-jobs
      description: Gainsight List bulk jobs
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cs-bulk-jobs.listbulkjobs
      with:
        status: tools.status
        limit: tools.limit
        offset: tools.offset
      outputParameters:
      - type: object
        mapping: $.
    - name: gainsight-get-bulk-job-status
      description: Gainsight Get bulk job status
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cs-bulk-jobs.getbulkjob
      outputParameters:
      - type: object
        mapping: $.
    - name: gainsight-get-bulk-job-errors
      description: Gainsight Get bulk job errors
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: cs-bulk-jobs.getbulkjoberrors
      outputParameters:
      - type: object
        mapping: $.