Oracle Eloqua · Capability

Oracle Eloqua Bulk API — Account Exports

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

Run with Naftiko EloquaAccount Exports

What You Can Do

GET
Listaccountexports — Oracle Eloqua List account export definitions
/v1/accounts/exports
POST
Createaccountexport — Oracle Eloqua Create an account export definition
/v1/accounts/exports
GET
Getaccountexport — Oracle Eloqua Retrieve an account export definition
/v1/accounts/exports/{id}
DELETE
Deleteaccountexport — Oracle Eloqua Delete an account export definition
/v1/accounts/exports/{id}

MCP Tools

oracle-eloqua-list-account-export

Oracle Eloqua List account export definitions

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

Oracle Eloqua Create an account export definition

oracle-eloqua-retrieve-account-export

Oracle Eloqua Retrieve an account export definition

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

Oracle Eloqua Delete an account export definition

idempotent

Capability Spec

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