Oracle Eloqua Bulk/2.0/activities API

The operations from the Bulk/2.0/activities category.

Operations 16

GET /api/bulk/2.0/activities/exports Retrieve a list of activity export definitions #
POST /api/bulk/2.0/activities/exports Create an activity export definition #
GET /api/bulk/2.0/activities/exports/{id} Retrieve an activity export definition #
PUT /api/bulk/2.0/activities/exports/{id} Update an activity export definition #
DELETE /api/bulk/2.0/activities/exports/{id} Delete an activity export definition #
GET /api/bulk/2.0/activities/exports/{id}/data Retrieve an activity export's synced data #
DELETE /api/bulk/2.0/activities/exports/{id}/data Delete an activity export definition's data #
GET /api/bulk/2.0/activities/fields/{id} Retrieve an activity field definition #
GET /api/bulk/2.0/activities/fields Retrieve a list of activity field definitions #
GET /api/bulk/2.0/activities/imports Retrieve a list of activity import definitions #
POST /api/bulk/2.0/activities/imports Create an activity import definition #
GET /api/bulk/2.0/activities/imports/{id} Retrieve an activity import definition #
PUT /api/bulk/2.0/activities/imports/{id} Update an activity import definition #
DELETE /api/bulk/2.0/activities/imports/{id} Delete an activity import definition #
POST /api/bulk/2.0/activities/imports/{id}/data Upload data for a specified activity import definition #
DELETE /api/bulk/2.0/activities/imports/{id}/data Delete an activity import definition's data #

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-bulk-2-0-activities-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-bulk-2-0-activities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: REST API for Oracle Eloqua Marketing Cloud Service Bulk/2.0/activities 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: Bulk/2.0/activities
  description: The operations from the Bulk/2.0/activities category.
paths:
  /api/bulk/2.0/activities/exports:
    get:
      tags:
      - Bulk/2.0/activities
      summary: Retrieve a list of activity export definitions
      description: Retrieves a list of activity export definitions.
      operationId: GetActivityExportSearch
      parameters:
      - name: limit
        in: query
        description: 'A URL parameter that specifies the maximum number of records to return. This can be any positive integer between 1 and 1000 inclusive. If not specified, the default is 1000. Example: <code>?limit=5</code>.'
        schema:
          type: integer
      - name: links
        in: query
        description: The links section in a resource return all the links by default. The client side might be only interested in a particular link. To satisfy that requirement, a "links" query parameter might be supported. The value of this query parameter is a list of relations separated by comma ",". For example, ?links=canonical, next will only return the links with "rel" property be canonical or next.
        schema:
          type: string
      - name: offset
        in: query
        description: 'Specifies an offset that allows you to retrieve the next batch of records. Any positive integer. For example, if your limit is 1000, specifying an offset of 1000 will return records 1000 through 2000. If not specified, the default is 0. Example: <code>?offset=1000</code>.'
        schema:
          type: integer
      - name: orderBy
        in: query
        description: 'Specifies the name of the property to order the results by. The <code>orderBy</code> format is <code>term</code> ASC | DESC. Example: <code>?orderBy=name ASC</code>.'
        schema:
          type: string
      - name: q
        in: query
        description: 'A URL parameter that specifies query criteria used to filter results. The <code>q</code> format is <code>term</code><code>operator</code><code>value</code>. Use "*" for wildcard values. Example: <code>?q="name=*Test*"</code> will find all the entities where the "name" field contains the string "Test".'
        schema:
          type: string
      - name: totalResults
        in: query
        description: Whether or not the total results are shown, and factored into the <code>hasMore</code> property in the response. When set to <code>false</code>, the <code>totalResults</code> property will not be returned, and the <code>hasMore</code> property will be determined based on returned events that match the criteria specified in the URL parameters. If not specified, the default is <code>true</code>.
        schema:
          type: boolean
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                title: ActivityExportSearchResponse
                description: The response body contains information about the activity export definitions.
                properties:
                  count:
                    title: count
                    description: Number of results returned in the request.
                    type: integer
                  hasMore:
                    title: hasMore
                    description: Indicates if there are more results.
                    type: boolean
                  items:
                    title: items
                    description: The collection of items that match the search.
                    type: array
                    items:
                      $ref: '#/components/schemas/Export'
                  limit:
                    title: limit
                    description: The maximum number of records returned. Set with the <code>limit</code> URL parameter, and defaults to 1000 if not specified.
                    type: integer
                  offset:
                    title: offset
                    description: The requested index from which records are returned. Set with the <code>offset</code> URL parameter, and defaults to 0 if not specified.
                    type: integer
                  totalResults:
                    format: int64
                    title: totalResults
                    description: Number of total results. Returned when the <code>totalResults</code> URL parameter is not set to <code>false</code>.
                    type: integer
        '400':
          description: Bad request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '401':
          description: Unauthorized. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '403':
          description: Forbidden. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '404':
          description: The requested resource was not found. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '409':
          description: There was a conflict. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '410':
          description: The requested resource is no longer available. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '412':
          description: The resource you are attempting to delete has dependencies, and cannot be deleted. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '413':
          description: Storage space exceeded. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '500':
          description: The service has encountered an internal server error. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '503':
          description: There was a timeout processing the request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
      deprecated: false
      x-internal-id: api-bulk-2.0-activities-exports-get
      x-filename-id: api-bulk-2.0-activities-exports-get
    post:
      tags:
      - Bulk/2.0/activities
      summary: Create an activity export definition
      description: Creates a new activity export definition. After a successful request, the next step is to <a href='op-api-bulk-2.0-syncs-post.html'>synchronize</a> the data. See the <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkExport'>tutorial</a> for details on how to export data.
      operationId: PostActivityExportIndividual
      responses:
        '201':
          description: Success.
          content:
            application/json:
              schema:
                title: ActivityExportIndividualResponse
                description: The response body includes information about the activity export definition.
                properties:
                  areSystemTimestampsInUTC:
                    title: areSystemTimestampsInUTC
                    description: Whether or not <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=SystemTimestamps'>system timestamps</a> will be exported in UTC. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>Filtering tutorial</a> for an example of filtering when <code>areSystemTimestampsInUTC</code> is set to <code>true</code>.
                    type: boolean
                  autoDeleteDuration:
                    title: autoDeleteDuration
                    description: Time until the definition will be deleted, expressed using the ISO-8601 standard.
                    type: string
                  createdAt:
                    format: date-time
                    title: createdAt
                    description: The date and time the entity was created, expressed using the ISO-8601 standard. This is a read-only property.
                    type: string
                  createdBy:
                    title: createdBy
                    description: The login id of the user who created the entity. This is a read-only property.
                    type: string
                  crmAccountIdField:
                    title: crmAccountIdField
                    description: The ML statement for an existing contact field which addresses the CRM account ID.
                    type: string
                  dataRetentionDuration:
                    title: dataRetentionDuration
                    description: The length of time exported data should remain in the staging area. Bulk API 2.0 uses the ISO-8601 standard for specifying all durations. Valid values are anything from PT1H (1 hour) to P14D (2 weeks). This setting will default to PT12H (12 hours) if not explicitly set during export definition creation.
                    type: string
                  externalSystemId:
                    title: externalSystemId
                    description: The external system ID is used when exporting data containing CRM fields.
                    type: integer
                  fields:
                    title: fields
                    description: List of fields to be included in the operation.
                    type: object
                  filter:
                    title: filter
                    description: The filter parameter uses Eloqua Markup Language to only return certain results. Learn more about <a href='http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>filters</a>.
                    type: string
                  kbUsed:
                    format: int64
                    title: kbUsed
                    description: The amount of space used in kilobytes. This is a read-only property.
                    type: integer
                  maxRecords:
                    title: maxRecords
                    description: The maximum amount of records.
                    type: integer
                  name:
                    title: name
                    description: The name of the export definition.
                    type: string
                  productIdField:
                    title: productIdField
                    description: The ML statement for an existing campaign field which addresses the product ID.
                    type: string
                  updatedAt:
                    format: date-time
                    title: updatedAt
                    description: The date and time the entity was last updated, expressed using the ISO-8601 standard. This is a read-only property.
                    type: string
                  updatedBy:
                    title: updatedBy
                    description: The login id of the user that last updated the entity. This is a read-only property.
                    type: string
                  uri:
                    title: uri
                    description: System-generated unique resource identifier that defines the definition for future referencing. This is a read-only property.
                    type: string
        '400':
          description: Bad request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '401':
          description: Unauthorized. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '403':
          description: Forbidden. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '404':
          description: The requested resource was not found. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '409':
          description: There was a conflict. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '410':
          description: The requested resource is no longer available. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '412':
          description: The resource you are attempting to delete has dependencies, and cannot be deleted. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '413':
          description: Storage space exceeded. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '500':
          description: The service has encountered an internal server error. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '503':
          description: There was a timeout processing the request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
      deprecated: false
      x-internal-id: api-bulk-2.0-activities-exports-post
      x-filename-id: api-bulk-2.0-activities-exports-post
      requestBody:
        content:
          application/json:
            schema:
              title: ActivityExportIndividual
              description: The request body defines the details of the activity export definition.
              properties:
                areSystemTimestampsInUTC:
                  title: areSystemTimestampsInUTC
                  description: Whether or not <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=SystemTimestamps'>system timestamps</a> will be exported in UTC. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>Filtering tutorial</a> for an example of filtering when <code>areSystemTimestampsInUTC</code> is set to <code>true</code>.
                  type: boolean
                autoDeleteDuration:
                  title: autoDeleteDuration
                  description: Time until the definition will be deleted, expressed using the ISO-8601 standard.
                  type: string
                createdAt:
                  format: date-time
                  title: createdAt
                  description: The date and time the entity was created, expressed using the ISO-8601 standard. This is a read-only property.
                  type: string
                createdBy:
                  title: createdBy
                  description: The login id of the user who created the entity. This is a read-only property.
                  type: string
                crmAccountIdField:
                  title: crmAccountIdField
                  description: The ML statement for an existing contact field which addresses the CRM account ID.
                  type: string
                dataRetentionDuration:
                  title: dataRetentionDuration
                  description: The length of time exported data should remain in the staging area. Bulk API 2.0 uses the ISO-8601 standard for specifying all durations. Valid values are anything from PT1H (1 hour) to P14D (2 weeks). This setting will default to PT12H (12 hours) if not explicitly set during export definition creation.
                  type: string
                externalSystemId:
                  title: externalSystemId
                  description: The external system ID is used when exporting data containing CRM fields.
                  type: integer
                fields:
                  title: fields
                  description: List of fields to be included in the operation.
                  type: object
                filter:
                  title: filter
                  description: The filter parameter uses Eloqua Markup Language to only return certain results. Learn more about <a href='http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>filters</a>.
                  type: string
                kbUsed:
                  format: int64
                  title: kbUsed
                  description: The amount of space used in kilobytes. This is a read-only property.
                  type: integer
                maxRecords:
                  title: maxRecords
                  description: The maximum amount of records.
                  type: integer
                name:
                  title: name
                  description: The name of the export definition.
                  type: string
                productIdField:
                  title: productIdField
                  description: The ML statement for an existing campaign field which addresses the product ID.
                  type: string
                updatedAt:
                  format: date-time
                  title: updatedAt
                  description: The date and time the entity was last updated, expressed using the ISO-8601 standard. This is a read-only property.
                  type: string
                updatedBy:
                  title: updatedBy
                  description: The login id of the user that last updated the entity. This is a read-only property.
                  type: string
                uri:
                  title: uri
                  description: System-generated unique resource identifier that defines the definition for future referencing. This is a read-only property.
                  type: string
          text/csv:
            schema:
              title: ActivityExportIndividual
              description: The request body defines the details of the activity export definition.
              properties:
                areSystemTimestampsInUTC:
                  title: areSystemTimestampsInUTC
                  description: Whether or not <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=SystemTimestamps'>system timestamps</a> will be exported in UTC. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>Filtering tutorial</a> for an example of filtering when <code>areSystemTimestampsInUTC</code> is set to <code>true</code>.
                  type: boolean
                autoDeleteDuration:
                  title: autoDeleteDuration
                  description: Time until the definition will be deleted, expressed using the ISO-8601 standard.
                  type: string
                createdAt:
                  format: date-time
                  title: createdAt
                  description: The date and time the entity was created, expressed using the ISO-8601 standard. This is a read-only property.
                  type: string
                createdBy:
                  title: createdBy
                  description: The login id of the user who created the entity. This is a read-only property.
                  type: string
                crmAccountIdField:
                  title: crmAccountIdField
                  description: The ML statement for an existing contact field which addresses the CRM account ID.
                  type: string
                dataRetentionDuration:
                  title: dataRetentionDuration
                  description: The length of time exported data should remain in the staging area. Bulk API 2.0 uses the ISO-8601 standard for specifying all durations. Valid values are anything from PT1H (1 hour) to P14D (2 weeks). This setting will default to PT12H (12 hours) if not explicitly set during export definition creation.
                  type: string
                externalSystemId:
                  title: externalSystemId
                  description: The external system ID is used when exporting data containing CRM fields.
                  type: integer
                fields:
                  title: fields
                  description: List of fields to be included in the operation.
                  type: object
                filter:
                  title: filter
                  description: The filter parameter uses Eloqua Markup Language to only return certain results. Learn more about <a href='http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>filters</a>.
                  type: string
                kbUsed:
                  format: int64
                  title: kbUsed
                  description: The amount of space used in kilobytes. This is a read-only property.
                  type: integer
                maxRecords:
                  title: maxRecords
                  description: The maximum amount of records.
                  type: integer
                name:
                  title: name
                  description: The name of the export definition.
                  type: string
                productIdField:
                  title: productIdField
                  description: The ML statement for an existing campaign field which addresses the product ID.
                  type: string
                updatedAt:
                  format: date-time
                  title: updatedAt
                  description: The date and time the entity was last updated, expressed using the ISO-8601 standard. This is a read-only property.
                  type: string
                updatedBy:
                  title: updatedBy
                  description: The login id of the user that last updated the entity. This is a read-only property.
                  type: string
                uri:
                  title: uri
                  description: System-generated unique resource identifier that defines the definition for future referencing. This is a read-only property.
                  type: string
        description: The request body contains details of the activity export definition.
        required: true
  /api/bulk/2.0/activities/exports/{id}:
    get:
      tags:
      - Bulk/2.0/activities
      summary: Retrieve an activity export definition
      description: Retrieves an activity export definition.
      operationId: GetActivityExportIndividual
      parameters:
      - name: id
        in: path
        description: Part of the uri used to identify the activity export.
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                title: ActivityExportIndividualResponse
                description: The response body includes information about the activity export definition.
                properties:
                  areSystemTimestampsInUTC:
                    title: areSystemTimestampsInUTC
                    description: Whether or not <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=SystemTimestamps'>system timestamps</a> will be exported in UTC. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>Filtering tutorial</a> for an example of filtering when <code>areSystemTimestampsInUTC</code> is set to <code>true</code>.
                    type: boolean
                  autoDeleteDuration:
                    title: autoDeleteDuration
                    description: Time until the definition will be deleted, expressed using the ISO-8601 standard.
                    type: string
                  createdAt:
                    format: date-time
                    title: createdAt
                    description: The date and time the entity was created, expressed using the ISO-8601 standard. This is a read-only property.
                    type: string
                  createdBy:
                    title: createdBy
                    description: The login id of the user who created the entity. This is a read-only property.
                    type: string
                  crmAccountIdField:
                    title: crmAccountIdField
                    description: The ML statement for an existing contact field which addresses the CRM account ID.
                    type: string
                  dataRetentionDuration:
                    title: dataRetentionDuration
                    description: The length of time exported data should remain in the staging area. Bulk API 2.0 uses the ISO-8601 standard for specifying all durations. Valid values are anything from PT1H (1 hour) to P14D (2 weeks). This setting will default to PT12H (12 hours) if not explicitly set during export definition creation.
                    type: string
                  externalSystemId:
                    title: externalSystemId
                    description: The external system ID is used when exporting data containing CRM fields.
                    type: integer
                  fields:
                    title: fields
                    description: List of fields to be included in the operation.
                    type: object
                  filter:
                    title: filter
                    description: The filter parameter uses Eloqua Markup Language to only return certain results. Learn more about <a href='http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>filters</a>.
                    type: string
                  kbUsed:
                    format: int64
                    title: kbUsed
                    description: The amount of space used in kilobytes. This is a read-only property.
                    type: integer
                  maxRecords:
                    title: maxRecords
                    description: The maximum amount of records.
                    type: integer
                  name:
                    title: name
                    description: The name of the export definition.
                    type: string
                  productIdField:
                    title: productIdField
                    description: The ML statement for an existing campaign field which addresses the product ID.
                    type: string
                  updatedAt:
                    format: date-time
                    title: updatedAt
                    description: The date and time the entity was last updated, expressed using the ISO-8601 standard. This is a read-only property.
                    type: string
                  updatedBy:
                    title: updatedBy
                    description: The login id of the user that last updated the entity. This is a read-only property.
                    type: string
                  uri:
                    title: uri
                    description: System-generated unique resource identifier that defines the definition for future referencing. This is a read-only property.
                    type: string
        '400':
          description: Bad request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '401':
          description: Unauthorized. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '403':
          description: Forbidden. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '404':
          description: The requested resource was not found. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '409':
          description: There was a conflict. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '410':
          description: The requested resource is no longer available. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '412':
          description: The resource you are attempting to delete has dependencies, and cannot be deleted. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '413':
          description: Storage space exceeded. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '500':
          description: The service has encountered an internal server error. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
        '503':
          description: There was a timeout processing the request. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=HTTPStatusCodes'>Status Codes</a> for information about other possible HTTP status codes.
      deprecated: false
      x-internal-id: api-bulk-2.0-activities-exports-{id}-get
      x-filename-id: api-bulk-2.0-activities-exports-id-get
    put:
      tags:
      - Bulk/2.0/activities
      summary: Update an activity export definition
      description: Updates an activity export definition.
      operationId: PutActivityExportIndividual
      parameters:
      - name: id
        in: path
        description: Part of the uri used to identify the activity export.
        required: true
        schema:
          type: integer
      responses:
        '200':
          description: OK.
          content:
            application/json:
              schema:
                title: ActivityExportIndividualResponse
                description: The response body includes information about the activity export definition.
                properties:
                  areSystemTimestampsInUTC:
                    title: areSystemTimestampsInUTC
                    description: Whether or not <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=SystemTimestamps'>system timestamps</a> will be exported in UTC. See <a href='https://docs.oracle.com/cloud/latest/marketingcs_gs/OMCAB/index.html#CSHID=BulkFiltering'>Filtering tutorial</a> fo

# --- truncated at 32 KB (150 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/eloqua/refs/heads/main/openapi/eloqua-bulk-2-0-activities-api-openapi.yml