Oracle Eloqua · Capability

Oracle Eloqua Bulk API — Activity Exports

Oracle Eloqua Bulk API — Activity Exports. 4 operations. Lead operation: Oracle Eloqua List activity export definitions. Self-contained Naftiko capability covering one Eloqua business surface.

Run with Naftiko EloquaActivity Exports

What You Can Do

GET
Listactivityexports — Oracle Eloqua List activity export definitions
/v1/activities/exports
POST
Createactivityexport — Oracle Eloqua Create an activity export definition
/v1/activities/exports
GET
Getactivityexport — Oracle Eloqua Retrieve an activity export definition
/v1/activities/exports/{id}
DELETE
Deleteactivityexport — Oracle Eloqua Delete an activity export definition
/v1/activities/exports/{id}

MCP Tools

oracle-eloqua-list-activity-export

Oracle Eloqua List activity export definitions

read-only idempotent
oracle-eloqua-create-activity-export

Oracle Eloqua Create an activity export definition

oracle-eloqua-retrieve-activity-export

Oracle Eloqua Retrieve an activity export definition

read-only idempotent
oracle-eloqua-delete-activity-export

Oracle Eloqua Delete an activity export definition

idempotent

Capability Spec

bulk-activity-exports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Eloqua Bulk API — Activity Exports
  description: 'Oracle Eloqua Bulk API — Activity Exports. 4 operations. Lead operation: Oracle Eloqua List activity export
    definitions. Self-contained Naftiko capability covering one Eloqua business surface.'
  tags:
  - Eloqua
  - Activity Exports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ELOQUA_API_KEY: ELOQUA_API_KEY
capability:
  consumes:
  - type: http
    namespace: bulk-activity-exports
    baseUri: https://secure.p01.eloqua.com/API/Bulk/2.0
    description: Oracle Eloqua Bulk API — Activity Exports business capability. Self-contained, no shared references.
    resources:
    - name: activities-exports
      path: /activities/exports
      operations:
      - name: listactivityexports
        method: GET
        description: Oracle Eloqua List activity export definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createactivityexport
        method: POST
        description: Oracle Eloqua Create an activity export definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: activities-exports-id
      path: /activities/exports/{id}
      operations:
      - name: getactivityexport
        method: GET
        description: Oracle Eloqua Retrieve an activity export definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: deleteactivityexport
        method: DELETE
        description: Oracle Eloqua Delete an activity export definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.ELOQUA_API_KEY}}'
  exposes:
  - type: rest
    namespace: bulk-activity-exports-rest
    port: 8080
    description: REST adapter for Oracle Eloqua Bulk API — Activity Exports. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/activities/exports
      name: activities-exports
      description: REST surface for activities-exports.
      operations:
      - method: GET
        name: listactivityexports
        description: Oracle Eloqua List activity export definitions
        call: bulk-activity-exports.listactivityexports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createactivityexport
        description: Oracle Eloqua Create an activity export definition
        call: bulk-activity-exports.createactivityexport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/activities/exports/{id}
      name: activities-exports-id
      description: REST surface for activities-exports-id.
      operations:
      - method: GET
        name: getactivityexport
        description: Oracle Eloqua Retrieve an activity export definition
        call: bulk-activity-exports.getactivityexport
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteactivityexport
        description: Oracle Eloqua Delete an activity export definition
        call: bulk-activity-exports.deleteactivityexport
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bulk-activity-exports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Eloqua Bulk API — Activity Exports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-eloqua-list-activity-export
      description: Oracle Eloqua List activity export definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-activity-exports.listactivityexports
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-create-activity-export
      description: Oracle Eloqua Create an activity export definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bulk-activity-exports.createactivityexport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-retrieve-activity-export
      description: Oracle Eloqua Retrieve an activity export definition
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-activity-exports.getactivityexport
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-delete-activity-export
      description: Oracle Eloqua Delete an activity export definition
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: bulk-activity-exports.deleteactivityexport
      outputParameters:
      - type: object
        mapping: $.