Oracle Eloqua · Capability

Oracle Eloqua Bulk API — Custom Object Exports

Oracle Eloqua Bulk API — Custom Object Exports. 3 operations. Lead operation: Oracle Eloqua List available custom objects. Self-contained Naftiko capability covering one Eloqua business surface.

Run with Naftiko EloquaCustom Object Exports

What You Can Do

GET
Listbulkcustomobjects — Oracle Eloqua List available custom objects
/v1/customobjects
GET
Listcustomobjectexports — Oracle Eloqua List custom object export definitions
/v1/customobjects/{parentid}/exports
POST
Createcustomobjectexport — Oracle Eloqua Create a custom object export definition
/v1/customobjects/{parentid}/exports

MCP Tools

oracle-eloqua-list-available-custom

Oracle Eloqua List available custom objects

read-only idempotent
oracle-eloqua-list-custom-object

Oracle Eloqua List custom object export definitions

read-only idempotent
oracle-eloqua-create-custom-object

Oracle Eloqua Create a custom object export definition

Capability Spec

bulk-custom-object-exports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Eloqua Bulk API — Custom Object Exports
  description: 'Oracle Eloqua Bulk API — Custom Object Exports. 3 operations. Lead operation: Oracle Eloqua List available
    custom objects. Self-contained Naftiko capability covering one Eloqua business surface.'
  tags:
  - Eloqua
  - Custom Object 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-custom-object-exports
    baseUri: https://secure.p01.eloqua.com/API/Bulk/2.0
    description: Oracle Eloqua Bulk API — Custom Object Exports business capability. Self-contained, no shared references.
    resources:
    - name: customObjects
      path: /customObjects
      operations:
      - name: listbulkcustomobjects
        method: GET
        description: Oracle Eloqua List available custom objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: customObjects-parentId-exports
      path: /customObjects/{parentId}/exports
      operations:
      - name: listcustomobjectexports
        method: GET
        description: Oracle Eloqua List custom object export definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcustomobjectexport
        method: POST
        description: Oracle Eloqua Create a custom object export definition
        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.ELOQUA_API_KEY}}'
  exposes:
  - type: rest
    namespace: bulk-custom-object-exports-rest
    port: 8080
    description: REST adapter for Oracle Eloqua Bulk API — Custom Object Exports. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/customobjects
      name: customobjects
      description: REST surface for customObjects.
      operations:
      - method: GET
        name: listbulkcustomobjects
        description: Oracle Eloqua List available custom objects
        call: bulk-custom-object-exports.listbulkcustomobjects
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/customobjects/{parentid}/exports
      name: customobjects-parentid-exports
      description: REST surface for customObjects-parentId-exports.
      operations:
      - method: GET
        name: listcustomobjectexports
        description: Oracle Eloqua List custom object export definitions
        call: bulk-custom-object-exports.listcustomobjectexports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcustomobjectexport
        description: Oracle Eloqua Create a custom object export definition
        call: bulk-custom-object-exports.createcustomobjectexport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bulk-custom-object-exports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Eloqua Bulk API — Custom Object Exports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-eloqua-list-available-custom
      description: Oracle Eloqua List available custom objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-custom-object-exports.listbulkcustomobjects
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-list-custom-object
      description: Oracle Eloqua List custom object export definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-custom-object-exports.listcustomobjectexports
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-create-custom-object
      description: Oracle Eloqua Create a custom object export definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bulk-custom-object-exports.createcustomobjectexport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.