Oracle Eloqua · Capability

Oracle Eloqua REST API — Landing Pages

Oracle Eloqua REST API — Landing Pages. 5 operations. Lead operation: Oracle Eloqua Create a landing page. Self-contained Naftiko capability covering one Eloqua business surface.

Run with Naftiko EloquaLanding Pages

What You Can Do

POST
Createlandingpage — Oracle Eloqua Create a landing page
/v1/assets/landingpage
GET
Getlandingpage — Oracle Eloqua Retrieve a landing page
/v1/assets/landingpage/{id}
PUT
Updatelandingpage — Oracle Eloqua Update a landing page
/v1/assets/landingpage/{id}
DELETE
Deletelandingpage — Oracle Eloqua Delete a landing page
/v1/assets/landingpage/{id}
GET
Listlandingpages — Oracle Eloqua List landing pages
/v1/assets/landingpages

MCP Tools

oracle-eloqua-create-landing-page

Oracle Eloqua Create a landing page

oracle-eloqua-retrieve-landing-page

Oracle Eloqua Retrieve a landing page

read-only idempotent
oracle-eloqua-update-landing-page

Oracle Eloqua Update a landing page

idempotent
oracle-eloqua-delete-landing-page

Oracle Eloqua Delete a landing page

idempotent
oracle-eloqua-list-landing-pages

Oracle Eloqua List landing pages

read-only idempotent

Capability Spec

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