Adobe Launch · Capability

Adobe Experience Platform Data Collection API — Edge Network API

Adobe Experience Platform Data Collection API — Edge Network API. 2 operations. Lead operation: Send Batch Events. Self-contained Naftiko capability covering one Adobe Launch business surface.

Run with Naftiko Adobe LaunchEdge Network API

What You Can Do

POST
Collect — Send Batch Events
/v1/ee/v2/collect
POST
Interact — Send Interactive Event
/v1/ee/v2/interact

MCP Tools

send-batch-events

Send Batch Events

send-interactive-event

Send Interactive Event

Capability Spec

data-collection-edge-network-api.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adobe Experience Platform Data Collection API — Edge Network API
  description: 'Adobe Experience Platform Data Collection API — Edge Network API. 2 operations. Lead operation: Send Batch
    Events. Self-contained Naftiko capability covering one Adobe Launch business surface.'
  tags:
  - Adobe Launch
  - Edge Network API
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADOBE_LAUNCH_API_KEY: ADOBE_LAUNCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: data-collection-edge-network-api
    baseUri: https://edge.adobedc.net
    description: Adobe Experience Platform Data Collection API — Edge Network API business capability. Self-contained, no
      shared references.
    resources:
    - name: ee-v2-collect
      path: /ee/v2/collect
      operations:
      - name: collect
        method: POST
        description: Send Batch Events
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: silent
          in: query
          type: boolean
          description: When true, returns 204 No Content with an empty payload instead of the standard response.
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ee-v2-interact
      path: /ee/v2/interact
      operations:
      - name: interact
        method: POST
        description: Send Interactive Event
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.ADOBE_LAUNCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: data-collection-edge-network-api-rest
    port: 8080
    description: REST adapter for Adobe Experience Platform Data Collection API — Edge Network API. One Spectral-compliant
      resource per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/ee/v2/collect
      name: ee-v2-collect
      description: REST surface for ee-v2-collect.
      operations:
      - method: POST
        name: collect
        description: Send Batch Events
        call: data-collection-edge-network-api.collect
        with:
          silent: rest.silent
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ee/v2/interact
      name: ee-v2-interact
      description: REST surface for ee-v2-interact.
      operations:
      - method: POST
        name: interact
        description: Send Interactive Event
        call: data-collection-edge-network-api.interact
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: data-collection-edge-network-api-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adobe Experience Platform Data Collection API — Edge Network API. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: send-batch-events
      description: Send Batch Events
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: data-collection-edge-network-api.collect
      with:
        silent: tools.silent
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: send-interactive-event
      description: Send Interactive Event
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: data-collection-edge-network-api.interact
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.