Oracle Eloqua · Capability

Oracle Eloqua REST API — Contact Lists

Oracle Eloqua REST API — Contact Lists. 5 operations. Lead operation: Oracle Eloqua Create a contact list. Self-contained Naftiko capability covering one Eloqua business surface.

Run with Naftiko EloquaContact Lists

What You Can Do

POST
Createcontactlist — Oracle Eloqua Create a contact list
/v1/assets/contact/list
GET
Getcontactlist — Oracle Eloqua Retrieve a contact list
/v1/assets/contact/list/{id}
PUT
Updatecontactlist — Oracle Eloqua Update a contact list
/v1/assets/contact/list/{id}
DELETE
Deletecontactlist — Oracle Eloqua Delete a contact list
/v1/assets/contact/list/{id}
GET
Listcontactlists — Oracle Eloqua List contact lists
/v1/assets/contact/lists

MCP Tools

oracle-eloqua-create-contact-list

Oracle Eloqua Create a contact list

oracle-eloqua-retrieve-contact-list

Oracle Eloqua Retrieve a contact list

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

Oracle Eloqua Update a contact list

idempotent
oracle-eloqua-delete-contact-list

Oracle Eloqua Delete a contact list

idempotent
oracle-eloqua-list-contact-lists

Oracle Eloqua List contact lists

read-only idempotent

Capability Spec

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