edi-214 · Capability

EDI 214 Transportation Carrier Shipment Status API — EDI Processing

EDI 214 Transportation Carrier Shipment Status API — EDI Processing. 2 operations. Lead operation: Generate EDI 214 document from JSON. Self-contained Naftiko capability covering one Edi 214 business surface.

Run with Naftiko Edi 214EDI Processing

What You Can Do

POST
Generateedi214 — Generate EDI 214 document from JSON
/v1/edi/generate
POST
Translateedi214 — Translate EDI 214 document to JSON
/v1/edi/translate

MCP Tools

generate-edi-214-document-json

Generate EDI 214 document from JSON

translate-edi-214-document-json

Translate EDI 214 document to JSON

Capability Spec

stedi-edi214-edi-processing.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: EDI 214 Transportation Carrier Shipment Status API — EDI Processing
  description: 'EDI 214 Transportation Carrier Shipment Status API — EDI Processing. 2 operations. Lead operation: Generate
    EDI 214 document from JSON. Self-contained Naftiko capability covering one Edi 214 business surface.'
  tags:
  - Edi 214
  - EDI Processing
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    EDI_214_API_KEY: EDI_214_API_KEY
capability:
  consumes:
  - type: http
    namespace: stedi-edi214-edi-processing
    baseUri: https://api.stedi.com/2024-01-01
    description: EDI 214 Transportation Carrier Shipment Status API — EDI Processing business capability. Self-contained,
      no shared references.
    resources:
    - name: edi-generate
      path: /edi/generate
      operations:
      - name: generateedi214
        method: POST
        description: Generate EDI 214 document from JSON
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: edi-translate
      path: /edi/translate
      operations:
      - name: translateedi214
        method: POST
        description: Translate EDI 214 document to JSON
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.EDI_214_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: stedi-edi214-edi-processing-rest
    port: 8080
    description: REST adapter for EDI 214 Transportation Carrier Shipment Status API — EDI Processing. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/edi/generate
      name: edi-generate
      description: REST surface for edi-generate.
      operations:
      - method: POST
        name: generateedi214
        description: Generate EDI 214 document from JSON
        call: stedi-edi214-edi-processing.generateedi214
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/edi/translate
      name: edi-translate
      description: REST surface for edi-translate.
      operations:
      - method: POST
        name: translateedi214
        description: Translate EDI 214 document to JSON
        call: stedi-edi214-edi-processing.translateedi214
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: stedi-edi214-edi-processing-mcp
    port: 9090
    transport: http
    description: MCP adapter for EDI 214 Transportation Carrier Shipment Status API — EDI Processing. One tool per consumed
      operation, routed inline through this capability's consumes block.
    tools:
    - name: generate-edi-214-document-json
      description: Generate EDI 214 document from JSON
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: stedi-edi214-edi-processing.generateedi214
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: translate-edi-214-document-json
      description: Translate EDI 214 document to JSON
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: stedi-edi214-edi-processing.translateedi214
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.