Oracle Eloqua · Capability

Oracle Eloqua Bulk API — Contact Imports

Oracle Eloqua Bulk API — Contact Imports. 8 operations. Lead operation: Oracle Eloqua List contact import definitions. Self-contained Naftiko capability covering one Eloqua business surface.

Run with Naftiko EloquaContact Imports

What You Can Do

GET
Listcontactimports — Oracle Eloqua List contact import definitions
/v1/contacts/imports
POST
Createcontactimport — Oracle Eloqua Create a contact import definition
/v1/contacts/imports
GET
Getcontactimport — Oracle Eloqua Retrieve a contact import definition
/v1/contacts/imports/{id}
PUT
Updatecontactimport — Oracle Eloqua Update a contact import definition
/v1/contacts/imports/{id}
DELETE
Deletecontactimport — Oracle Eloqua Delete a contact import definition
/v1/contacts/imports/{id}
POST
Pushcontactimportdata — Oracle Eloqua Push data to a contact import
/v1/contacts/imports/{id}/data
DELETE
Deletecontactimportdata — Oracle Eloqua Delete staged contact import data
/v1/contacts/imports/{id}/data
POST
Createcontactsyncaction — Oracle Eloqua Create a contact sync action
/v1/contacts/syncactions

MCP Tools

oracle-eloqua-list-contact-import

Oracle Eloqua List contact import definitions

read-only idempotent
oracle-eloqua-create-contact-import

Oracle Eloqua Create a contact import definition

oracle-eloqua-retrieve-contact-import

Oracle Eloqua Retrieve a contact import definition

read-only idempotent
oracle-eloqua-update-contact-import

Oracle Eloqua Update a contact import definition

idempotent
oracle-eloqua-delete-contact-import

Oracle Eloqua Delete a contact import definition

idempotent
oracle-eloqua-push-data-contact

Oracle Eloqua Push data to a contact import

oracle-eloqua-delete-staged-contact

Oracle Eloqua Delete staged contact import data

idempotent
oracle-eloqua-create-contact-sync

Oracle Eloqua Create a contact sync action

Capability Spec

bulk-contact-imports.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Oracle Eloqua Bulk API — Contact Imports
  description: 'Oracle Eloqua Bulk API — Contact Imports. 8 operations. Lead operation: Oracle Eloqua List contact import
    definitions. Self-contained Naftiko capability covering one Eloqua business surface.'
  tags:
  - Eloqua
  - Contact Imports
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ELOQUA_API_KEY: ELOQUA_API_KEY
capability:
  consumes:
  - type: http
    namespace: bulk-contact-imports
    baseUri: https://secure.p01.eloqua.com/API/Bulk/2.0
    description: Oracle Eloqua Bulk API — Contact Imports business capability. Self-contained, no shared references.
    resources:
    - name: contacts-imports
      path: /contacts/imports
      operations:
      - name: listcontactimports
        method: GET
        description: Oracle Eloqua List contact import definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createcontactimport
        method: POST
        description: Oracle Eloqua Create a contact import definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: contacts-imports-id
      path: /contacts/imports/{id}
      operations:
      - name: getcontactimport
        method: GET
        description: Oracle Eloqua Retrieve a contact import definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatecontactimport
        method: PUT
        description: Oracle Eloqua Update a contact import definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecontactimport
        method: DELETE
        description: Oracle Eloqua Delete a contact import definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: contacts-imports-id-data
      path: /contacts/imports/{id}/data
      operations:
      - name: pushcontactimportdata
        method: POST
        description: Oracle Eloqua Push data to a contact import
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletecontactimportdata
        method: DELETE
        description: Oracle Eloqua Delete staged contact import data
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: contacts-syncActions
      path: /contacts/syncActions
      operations:
      - name: createcontactsyncaction
        method: POST
        description: Oracle Eloqua Create a contact sync action
        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-contact-imports-rest
    port: 8080
    description: REST adapter for Oracle Eloqua Bulk API — Contact Imports. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/contacts/imports
      name: contacts-imports
      description: REST surface for contacts-imports.
      operations:
      - method: GET
        name: listcontactimports
        description: Oracle Eloqua List contact import definitions
        call: bulk-contact-imports.listcontactimports
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createcontactimport
        description: Oracle Eloqua Create a contact import definition
        call: bulk-contact-imports.createcontactimport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/contacts/imports/{id}
      name: contacts-imports-id
      description: REST surface for contacts-imports-id.
      operations:
      - method: GET
        name: getcontactimport
        description: Oracle Eloqua Retrieve a contact import definition
        call: bulk-contact-imports.getcontactimport
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatecontactimport
        description: Oracle Eloqua Update a contact import definition
        call: bulk-contact-imports.updatecontactimport
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontactimport
        description: Oracle Eloqua Delete a contact import definition
        call: bulk-contact-imports.deletecontactimport
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/contacts/imports/{id}/data
      name: contacts-imports-id-data
      description: REST surface for contacts-imports-id-data.
      operations:
      - method: POST
        name: pushcontactimportdata
        description: Oracle Eloqua Push data to a contact import
        call: bulk-contact-imports.pushcontactimportdata
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletecontactimportdata
        description: Oracle Eloqua Delete staged contact import data
        call: bulk-contact-imports.deletecontactimportdata
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/contacts/syncactions
      name: contacts-syncactions
      description: REST surface for contacts-syncActions.
      operations:
      - method: POST
        name: createcontactsyncaction
        description: Oracle Eloqua Create a contact sync action
        call: bulk-contact-imports.createcontactsyncaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: bulk-contact-imports-mcp
    port: 9090
    transport: http
    description: MCP adapter for Oracle Eloqua Bulk API — Contact Imports. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: oracle-eloqua-list-contact-import
      description: Oracle Eloqua List contact import definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-contact-imports.listcontactimports
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-create-contact-import
      description: Oracle Eloqua Create a contact import definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bulk-contact-imports.createcontactimport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-retrieve-contact-import
      description: Oracle Eloqua Retrieve a contact import definition
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: bulk-contact-imports.getcontactimport
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-update-contact-import
      description: Oracle Eloqua Update a contact import definition
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: bulk-contact-imports.updatecontactimport
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-delete-contact-import
      description: Oracle Eloqua Delete a contact import definition
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: bulk-contact-imports.deletecontactimport
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-push-data-contact
      description: Oracle Eloqua Push data to a contact import
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bulk-contact-imports.pushcontactimportdata
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-delete-staged-contact
      description: Oracle Eloqua Delete staged contact import data
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: bulk-contact-imports.deletecontactimportdata
      outputParameters:
      - type: object
        mapping: $.
    - name: oracle-eloqua-create-contact-sync
      description: Oracle Eloqua Create a contact sync action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: bulk-contact-imports.createcontactsyncaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.