TM Forum · Capability

Service Catalog Management — importJob

Service Catalog Management — importJob. 4 operations. Lead operation: List or find ImportJob objects. Self-contained Naftiko capability covering one Tm Forum business surface.

Run with Naftiko Tm ForumimportJob

What You Can Do

GET
Listimportjob — List or find ImportJob objects
/v1/importjob
POST
Createimportjob — Creates a ImportJob
/v1/importjob
GET
Retrieveimportjob — Retrieves a ImportJob by ID
/v1/importjob/{id}
DELETE
Deleteimportjob — Deletes a ImportJob
/v1/importjob/{id}

MCP Tools

list-find-importjob-objects

List or find ImportJob objects

read-only idempotent
creates-importjob

Creates a ImportJob

retrieves-importjob-id

Retrieves a ImportJob by ID

read-only idempotent
deletes-importjob

Deletes a ImportJob

idempotent

Capability Spec

tmf633-service-catalog-importjob.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Service Catalog Management — importJob
  description: 'Service Catalog Management — importJob. 4 operations. Lead operation: List or find ImportJob objects. Self-contained
    Naftiko capability covering one Tm Forum business surface.'
  tags:
  - Tm Forum
  - importJob
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TM_FORUM_API_KEY: TM_FORUM_API_KEY
capability:
  consumes:
  - type: http
    namespace: tmf633-service-catalog-importjob
    baseUri: https://serverRoot/tmf-api/serviceCatalogManagement/v4
    description: Service Catalog Management — importJob business capability. Self-contained, no shared references.
    resources:
    - name: importJob
      path: /importJob
      operations:
      - name: listimportjob
        method: GET
        description: List or find ImportJob objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to be provided in response
        - name: offset
          in: query
          type: integer
          description: Requested index for start of resources to be provided in response
        - name: limit
          in: query
          type: integer
          description: Requested number of resources to be provided in response
      - name: createimportjob
        method: POST
        description: Creates a ImportJob
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: importJob
          in: body
          type: string
          description: The ImportJob to be created
          required: true
    - name: importJob-id
      path: /importJob/{id}
      operations:
      - name: retrieveimportjob
        method: GET
        description: Retrieves a ImportJob by ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ImportJob
          required: true
        - name: fields
          in: query
          type: string
          description: Comma-separated properties to provide in response
      - name: deleteimportjob
        method: DELETE
        description: Deletes a ImportJob
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Identifier of the ImportJob
          required: true
  exposes:
  - type: rest
    namespace: tmf633-service-catalog-importjob-rest
    port: 8080
    description: REST adapter for Service Catalog Management — importJob. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/importjob
      name: importjob
      description: REST surface for importJob.
      operations:
      - method: GET
        name: listimportjob
        description: List or find ImportJob objects
        call: tmf633-service-catalog-importjob.listimportjob
        with:
          fields: rest.fields
          offset: rest.offset
          limit: rest.limit
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createimportjob
        description: Creates a ImportJob
        call: tmf633-service-catalog-importjob.createimportjob
        with:
          importJob: rest.importJob
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/importjob/{id}
      name: importjob-id
      description: REST surface for importJob-id.
      operations:
      - method: GET
        name: retrieveimportjob
        description: Retrieves a ImportJob by ID
        call: tmf633-service-catalog-importjob.retrieveimportjob
        with:
          id: rest.id
          fields: rest.fields
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteimportjob
        description: Deletes a ImportJob
        call: tmf633-service-catalog-importjob.deleteimportjob
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: tmf633-service-catalog-importjob-mcp
    port: 9090
    transport: http
    description: MCP adapter for Service Catalog Management — importJob. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-find-importjob-objects
      description: List or find ImportJob objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-importjob.listimportjob
      with:
        fields: tools.fields
        offset: tools.offset
        limit: tools.limit
      outputParameters:
      - type: object
        mapping: $.
    - name: creates-importjob
      description: Creates a ImportJob
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: tmf633-service-catalog-importjob.createimportjob
      with:
        importJob: tools.importJob
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieves-importjob-id
      description: Retrieves a ImportJob by ID
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: tmf633-service-catalog-importjob.retrieveimportjob
      with:
        id: tools.id
        fields: tools.fields
      outputParameters:
      - type: object
        mapping: $.
    - name: deletes-importjob
      description: Deletes a ImportJob
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: tmf633-service-catalog-importjob.deleteimportjob
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.