VTEX · Capability

VTex Catalog API — SKU Service Attachment

VTex Catalog API — SKU Service Attachment. 3 operations. Lead operation: VTex Associate SKU service attachment. Self-contained Naftiko capability covering one Vtex business surface.

Run with Naftiko VtexSKU Service Attachment

What You Can Do

POST
Post — VTex Associate SKU service attachment
/v1/api/catalog/pvt/skuservicetypeattachment
DELETE
Delete — VTex Dissociate attachment by attachment ID or SKU service type ID
/v1/api/catalog/pvt/skuservicetypeattachment
DELETE
Delete — VTex Dissociate Attachment from SKU service type
/v1/api/catalog/pvt/skuservicetypeattachment/{skuservicetypeattachmentid}

MCP Tools

vtex-associate-sku-service-attachment

VTex Associate SKU service attachment

vtex-dissociate-attachment-attachment-id

VTex Dissociate attachment by attachment ID or SKU service type ID

idempotent
vtex-dissociate-attachment-sku-service

VTex Dissociate Attachment from SKU service type

idempotent

Capability Spec

catalog-sku-service-attachment.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: VTex Catalog API — SKU Service Attachment
  description: 'VTex Catalog API — SKU Service Attachment. 3 operations. Lead operation: VTex Associate SKU service attachment.
    Self-contained Naftiko capability covering one Vtex business surface.'
  tags:
  - Vtex
  - SKU Service Attachment
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    VTEX_API_KEY: VTEX_API_KEY
capability:
  consumes:
  - type: http
    namespace: catalog-sku-service-attachment
    baseUri: https://{accountName}.{environment}.com.br
    description: VTex Catalog API — SKU Service Attachment business capability. Self-contained, no shared references.
    resources:
    - name: api-catalog-pvt-skuservicetypeattachment
      path: /api/catalog/pvt/skuservicetypeattachment
      operations:
      - name: post
        method: POST
        description: VTex Associate SKU service attachment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: VTex Dissociate attachment by attachment ID or SKU service type ID
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: attachmentId
          in: query
          type: integer
          description: SKU service attachment unique identifier.
        - name: skuServiceTypeId
          in: query
          type: integer
          description: SKU service type unique identifier.
    - name: api-catalog-pvt-skuservicetypeattachment-skuServiceTypeAttachmentId
      path: /api/catalog/pvt/skuservicetypeattachment/{skuServiceTypeAttachmentId}
      operations:
      - name: delete
        method: DELETE
        description: VTex Dissociate Attachment from SKU service type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: skuServiceTypeAttachmentId
          in: path
          type: integer
          description: SKU service attachment unique identifier.
          required: true
    authentication:
      type: apikey
      key: X-VTEX-API-AppKey
      value: '{{env.VTEX_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: catalog-sku-service-attachment-rest
    port: 8080
    description: REST adapter for VTex Catalog API — SKU Service Attachment. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/catalog/pvt/skuservicetypeattachment
      name: api-catalog-pvt-skuservicetypeattachment
      description: REST surface for api-catalog-pvt-skuservicetypeattachment.
      operations:
      - method: POST
        name: post
        description: VTex Associate SKU service attachment
        call: catalog-sku-service-attachment.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: VTex Dissociate attachment by attachment ID or SKU service type ID
        call: catalog-sku-service-attachment.delete
        with:
          attachmentId: rest.attachmentId
          skuServiceTypeId: rest.skuServiceTypeId
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/catalog/pvt/skuservicetypeattachment/{skuservicetypeattachmentid}
      name: api-catalog-pvt-skuservicetypeattachment-skuservicetypeattachmentid
      description: REST surface for api-catalog-pvt-skuservicetypeattachment-skuServiceTypeAttachmentId.
      operations:
      - method: DELETE
        name: delete
        description: VTex Dissociate Attachment from SKU service type
        call: catalog-sku-service-attachment.delete
        with:
          skuServiceTypeAttachmentId: rest.skuServiceTypeAttachmentId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: catalog-sku-service-attachment-mcp
    port: 9090
    transport: http
    description: MCP adapter for VTex Catalog API — SKU Service Attachment. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: vtex-associate-sku-service-attachment
      description: VTex Associate SKU service attachment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: catalog-sku-service-attachment.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-dissociate-attachment-attachment-id
      description: VTex Dissociate attachment by attachment ID or SKU service type ID
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-sku-service-attachment.delete
      with:
        attachmentId: tools.attachmentId
        skuServiceTypeId: tools.skuServiceTypeId
      outputParameters:
      - type: object
        mapping: $.
    - name: vtex-dissociate-attachment-sku-service
      description: VTex Dissociate Attachment from SKU service type
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: catalog-sku-service-attachment.delete
      with:
        skuServiceTypeAttachmentId: tools.skuServiceTypeAttachmentId
      outputParameters:
      - type: object
        mapping: $.