Oracle Eloqua Reporting/Opportunity Analysis/1.0/Contact API

The operations from the Reporting/OpportunityAnalysis/1.0/Contact category.

Operations 3

GET /API/OData/OpportunityAnalysis/1/Contact Get all Contacts, Label access control is respected #
GET /API/OData/OpportunityAnalysis/1/Contact/{key} Get a single contact, Label access control is respected #
GET /API/OData/OpportunityAnalysis/1/Contact/{key}/Opportunities Get all Opportunities for a specified Contact #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/eloqua-reporting-opportunityanalysis-1-0-contact-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

eloqua-reporting-opportunityanalysis-1-0-contact-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST API for Oracle Eloqua Marketing Cloud Service Reporting/Opportunity Analysis/1.0/Contact API
  description: The Oracle Eloqua Marketing Cloud Service REST APIs enable you to extend the functionality of the product, build Apps, and perform high volume data transfers.
  version: 2026.08.07
  x-summary: The Oracle Eloqua Marketing Cloud Service REST APIs enable you to extend the functionality of the product, build Apps, and perform high volume data transfers.
tags:
- name: Reporting/OpportunityAnalysis/1.0/Contact
  description: The operations from the Reporting/OpportunityAnalysis/1.0/Contact category.
paths:
  /API/OData/OpportunityAnalysis/1/Contact:
    get:
      tags:
      - Reporting/OpportunityAnalysis/1.0/Contact
      summary: Get all Contacts, Label access control is respected
      operationId: Contact_Get
      parameters:
      - name: $select
        in: query
        description: Limits the properties returned in the result.
        required: false
        schema:
          type: string
      - name: $expand
        in: query
        description: Indicates the related entities to be represented inline. The maximum depth is 2.
        required: false
        schema:
          type: string
      - name: $filter
        in: query
        description: 'Restricts the set of items returned. The maximum number of expressions is 100. The allowed functions are: allfunctions.'
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        description: Specifies the order in which items are returned. The maximum number of expressions is 5.
        required: false
        schema:
          type: string
      - name: $top
        in: query
        description: Limits the number of items returned from a collection. The maximum value is 20000.
        required: false
        schema:
          type: integer
          format: int32
      - name: $skip
        in: query
        description: Excludes the specified number of items of the queried collection from the result.
        required: false
        schema:
          type: integer
          format: int32
      - name: $count
        in: query
        description: Indicates whether the total count of items within a collection are returned in the result.
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Contacts successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Contact'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Contact'
      x-internal-id: API-OData-OpportunityAnalysis-1-Contact-get
      x-filename-id: api-odata-opportunityanalysis-1-contact-get
  /API/OData/OpportunityAnalysis/1/Contact/{key}:
    get:
      tags:
      - Reporting/OpportunityAnalysis/1.0/Contact
      summary: Get a single contact, Label access control is respected
      operationId: Contact_Get_By_ID
      parameters:
      - name: key
        in: path
        description: ContactID
        required: true
        schema:
          type: integer
          format: int32
      - name: $select
        in: query
        description: Limits the properties returned in the result.
        required: false
        schema:
          type: string
      - name: $expand
        in: query
        description: Indicates the related entities to be represented inline. The maximum depth is 2.
        required: false
        schema:
          type: string
      - name: $filter
        in: query
        description: 'Restricts the set of items returned. The maximum number of expressions is 100. The allowed functions are: allfunctions.'
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        description: Specifies the order in which items are returned. The maximum number of expressions is 5.
        required: false
        schema:
          type: string
      - name: $top
        in: query
        description: Limits the number of items returned from a collection. The maximum value is 20000.
        required: false
        schema:
          type: integer
          format: int32
      - name: $skip
        in: query
        description: Excludes the specified number of items of the queried collection from the result.
        required: false
        schema:
          type: integer
          format: int32
      - name: $count
        in: query
        description: Indicates whether the total count of items within a collection are returned in the result.
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Contact was successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Contact'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Contact'
      x-internal-id: API-OData-OpportunityAnalysis-1-Contact-{key}-get
      x-filename-id: api-odata-opportunityanalysis-1-contact-key-get
  /API/OData/OpportunityAnalysis/1/Contact/{key}/Opportunities:
    get:
      tags:
      - Reporting/OpportunityAnalysis/1.0/Contact
      summary: Get all Opportunities for a specified Contact
      operationId: Contact_GetOpportunities
      parameters:
      - name: key
        in: path
        description: ContactID
        required: true
        schema:
          type: integer
          format: int32
      - name: $select
        in: query
        description: Limits the properties returned in the result.
        required: false
        schema:
          type: string
      - name: $expand
        in: query
        description: Indicates the related entities to be represented inline. The maximum depth is 2.
        required: false
        schema:
          type: string
      - name: $filter
        in: query
        description: 'Restricts the set of items returned. The maximum number of expressions is 100. The allowed functions are: allfunctions.'
        required: false
        schema:
          type: string
      - name: $orderby
        in: query
        description: Specifies the order in which items are returned. The maximum number of expressions is 5.
        required: false
        schema:
          type: string
      - name: $top
        in: query
        description: Limits the number of items returned from a collection. The maximum value is 20000.
        required: false
        schema:
          type: integer
          format: int32
      - name: $skip
        in: query
        description: Excludes the specified number of items of the queried collection from the result.
        required: false
        schema:
          type: integer
          format: int32
      - name: $count
        in: query
        description: Indicates whether the total count of items within a collection are returned in the result.
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Opportunity was successfully retrieved
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Opportunity'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Opportunity'
      x-internal-id: API-OData-OpportunityAnalysis-1-Contact-{key}-Opportunities-get
      x-filename-id: api-odata-opportunityanalysis-1-contact-key-opportunities-get
components:
  schemas:
    Opportunity:
      type: object
      properties:
        opportunityID:
          format: int32
          type: integer
        opportunityName:
          type: string
        stageStatus:
          type: string
        opportunityClosedDateHour:
          format: date-time
          type: string
        createdDate:
          format: date-time
          type: string
        territory:
          type: string
        stage:
          type: string
        totalOpportunityAmount:
          format: double
          type: number
        lastModifiedDate:
          format: date-time
          type: string
        primaryContactID:
          format: int32
          type: integer
        crmCampaignID:
          type: string
        opportunityRevenues:
          type: array
          items:
            $ref: '#/components/schemas/OpportunityRevenue'
        contact:
          $ref: '#/components/schemas/Contact'
    OpportunityRevenue:
      type: object
      properties:
        eloquaCampaignID:
          format: int32
          type: integer
        opportunityID:
          format: int32
          type: integer
        attributedRevenue:
          format: double
          type: number
        influencedRevenue:
          format: double
          type: number
        lastModifiedDate:
          format: date-time
          type: string
        opportunity:
          $ref: '#/components/schemas/Opportunity'
    Contact:
      type: object
      properties:
        contactId:
          format: int32
          type: integer
        createdDate:
          format: date-time
          type: string
        createdDateHour:
          format: date-time
          type: string
        lastModifiedDate:
          format: date-time
          type: string
        firstName:
          type: string
        lastName:
          type: string
        company:
          type: string
        emailAddress:
          type: string
        emailAddressDomain:
          type: string
        contactAddress1:
          type: string
        contactAddress2:
          type: string
        contactAddress3:
          type: string
        contactCity:
          type: string
        contactStateProv:
          type: string
        contactZipPostalCode:
          type: string
        contactCountry:
          type: string
        businessPhone:
          type: string
        salesPerson:
          type: string
        mobilePhone:
          type: string
        fax:
          type: string
        title:
          type: string
        leadSourceMostRecent:
          type: string
        leadSourceOriginal:
          type: string
        territory:
          type: string
        accountID:
          format: int32
          type: integer
        eloquaLinkedAccountId:
          format: int32
          type: integer