...
...
Overview
The following operations allow you to work with activities. Click an operation name to see details on how to use it.
For a sample proxy service that illustrates how to work with activities, see Sample configuration .
Operation Details
This section provides further details on the operations related to activity.
Anchor |
---|
| createActivityExport |
---|
| createActivityExport |
---|
|
Create Activity Export
The createActivityExport
operation creates a new activity export definition.
Code Block |
---|
language | xml |
---|
title | createActivityExport |
---|
|
<eloqua.createActivityExport>
<name>{$ctx:name}</name>
<fields>{$ctx:fields}</fields>
<autoDeleteDuration>{$ctx:autoDeleteDuration}</autoDeleteDuration>
<filter>{$ctx:filter}</filter>
<createdAt>{$ctx:createdAt}</createdAt>
<createdBy>{$ctx:createdBy}</createdBy>
<dataRetentionDuration>{$ctx:dataRetentionDuration}</dataRetentionDuration>
<kbUsed>{$ctx:kbUsed}</kbUsed>
<maxRecords>{$ctx:maxRecords}</maxRecords>
<syncActions>{$ctx:syncActions}</syncActions>
<updatedAt>{$ctx:updatedAt}</updatedAt>
<updatedBy>{$ctx:updatedBy}</updatedBy>
<uri>{$ctx:uri}</uri>
</eloqua.createActivityExport> |
properties
name:
Name of the definition. Useful for reusing definitions.
fields
: List of fields to be included in the operation.
autoDeleteDuration
: Time until the definition will be deleted.
filter
: Specifies what data should be included in the export.
createdAt:
Timestamp when the definition was created.
createdBy:
User who created the definition.
dataRetentionDuration:
Time until the staged data will be deleted.kbUsed
: The amount of space required to store staged data.maxRecords:
Specifies the maximum number of records to export.
syncActions:
Specifies additional operations to import or export.updatedAt:
Timestamp when the definition was updated.updatedBy:
User who updated the definition.uri:
System- generated URI that defines the definition for future referencing.
Sample request
Following is a sample REST/JSON request that can be handled by the createActivityExport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for createActivityExport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"name":"testExport",
"fields":{"email":"Activity.Field(EmailAddress)"},
"filter":"'{{Activity.Type}}'='Subscribe'"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/post-exports.htm
Anchor |
---|
| createActivityImport |
---|
| createActivityImport |
---|
|
Create Activity Import
The createActivityImport operation creates a new activity import definition.
Code Block |
---|
language | xml |
---|
title | createActivityImport |
---|
|
<eloqua.createActivityImport>
<name>{$ctx:name}</name>
<fields>{$ctx:fields}</fields>
<autoDeleteDuration>{$ctx:autoDeleteDuration}</autoDeleteDuration>
<isUpdatingMultipleMatchedRecords>{$ctx:isUpdatingMultipleMatchedRecords}</isUpdatingMultipleMatchedRecords>
<createdAt>{$ctx:createdAt}</createdAt>
<createdBy>{$ctx:createdBy}</createdBy>
<dataRetentionDuration>{$ctx:dataRetentionDuration}</dataRetentionDuration>
<identifierFieldName>{$ctx:identifierFieldName}</identifierFieldName>
<kbUsed>{$ctx:kbUsed}</kbUsed>
<updateRule>{$ctx:updateRule}</updateRule>
<syncActions>{$ctx:syncActions}</syncActions>
<updatedAt>{$ctx:updatedAt}</updatedAt>
<updatedBy>{$ctx:updatedBy}</updatedBy>
<uri>{$ctx:uri}</uri>
</eloqua.createActivityImport> |
properties
name:
Name of the definition. Useful for reusing definitions.
fields
: List of fields to be included in the operation.
autoDeleteDuration
: Time until the definition will be deleted.
isUpdatingMultipleMatchedRecords
: Specifies whether Eloqua should update multiple records if multiple records match the identifierFieldName.
createdAt:
Timestamp when the definition was created.
createdBy:
User who created the definition.
dataRetentionDuration:
Time until the staged data will be deleted.identifierFieldName
: Specifies which field to use to match the imported data to existing Eloqua data.updateRule:
Specifies how updates should be handled.kbUsed:
The amount of space required to store staged data.syncActions:
Specifies additional operations to import or export.updatedAt:
Timestamp when the definition was updated.updatedBy:
User who updated the definition.uri:
System- generated URI that defines the definition for future referencing.
Sample request
Following is a sample REST/JSON request that can be handled by the createActivityImport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for createActivityImport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"name":"testImport",
"fields":{"email":"Activity.Field(EmailAddress)","type":"Activity.Type"},
"identifierFieldName":"email"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/post-imports.htm
Anchor |
---|
| createActivityImportData |
---|
| createActivityImportData |
---|
|
Create Activity Import DataThe createActivityImportData
operation submits the data for the activity import with the specified id.
Code Block |
---|
language | xml |
---|
title | createActivityImportData |
---|
|
<eloqua.createActivityImportData>
<importId>{$ctx:importId}</importId>
<importData>{$ctx:importData}</importData>
</eloqua.createActivityImportData> |
properties
importId
: The id of the import.
importData
: Array of dictionary of strings.
Sample Request
Following is a sample REST/JSON request that can be handled by createActivityImportData
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for createActivityImportData |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"importId":"1",
"importData":[
{
"email": "sean.butler@example.com",
"type":"Registered"
},
{
"FirstName": "nikita.robertson@example.com",
"type":"Registered"
}
]
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/post-imports-id-data.htm
Anchor |
---|
| updateActivityExport |
---|
| updateActivityExport |
---|
|
Update Activity Export
The updateActivityExport
operation updates the activity export definition with the specified id.
Code Block |
---|
language | xml |
---|
title | updateActivityExport |
---|
|
<eloqua.updateActivityExport>
<exportId>{$ctx:exportId}</exportId>
<name>{$ctx:name}</name>
<fields>{$ctx:fields}</fields>
<autoDeleteDuration>{$ctx:autoDeleteDuration}</autoDeleteDuration>
<filter>{$ctx:filter}</filter>
<createdAt>{$ctx:createdAt}</createdAt>
<createdBy>{$ctx:createdBy}</createdBy>
<dataRetentionDuration>{$ctx:dataRetentionDuration}</dataRetentionDuration>
<kbUsed>{$ctx:kbUsed}</kbUsed>
<maxRecords>{$ctx:maxRecords}</maxRecords>
<syncActions>{$ctx:syncActions}</syncActions>
<updatedAt>{$ctx:updatedAt}</updatedAt>
<updatedBy>{$ctx:updatedBy}</updatedBy>
<uri>{$ctx:uri}</uri>
</eloqua.updateActivityExport> |
properties
exportId
: The id of the export.
name:
Name of the definition. Useful for reusing definitions.fields
: List of fields to be included in the operation.
autoDeleteDuration
: Time until the definition will be deleted.
filter
: Specifies what data should be included in the export.
createdAt:
Timestamp when the definition was created.
createdBy:
User who created the definition.
dataRetentionDuration:
Time until the staged data will be deleted.kbUsed
: The amount of space required to store staged data.maxRecords:
Specifies the maximum number of records to export.
syncActions:
Specifies additional operations to import or export.updatedAt:
Timestamp when the definition was updated.updatedBy:
User who updated the definition.uri:
System- generated URI that defines the definition for future referencing.
Sample request
Following is a sample REST/JSON request that can be handled by the updateActivityExport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for updateActivityExport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"34",
"name":"testExport",
"fields":{"email":"Activity.Field(EmailAddress)"},
"filter":"'{{Activity.Type}}'='Subscribe'"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/put-exports-id.htm
Anchor |
---|
| updateActivityImport |
---|
| updateActivityImport |
---|
|
Update Activity Import
The updateActivityImport
operation updates the activity import definition with the specified id.
Code Block |
---|
language | xml |
---|
title | updateActivityImport |
---|
|
<eloqua.updateActivityImport>
<importId>{$ctx:importId}</importId>
<name>{$ctx:name}</name>
<fields>{$ctx:fields}</fields>
<autoDeleteDuration>{$ctx:autoDeleteDuration}</autoDeleteDuration>
<isUpdatingMultipleMatchedRecords>{$ctx:isUpdatingMultipleMatchedRecords}</isUpdatingMultipleMatchedRecords>
<createdAt>{$ctx:createdAt}</createdAt>
<createdBy>{$ctx:createdBy}</createdBy>
<dataRetentionDuration>{$ctx:dataRetentionDuration}</dataRetentionDuration>
<identifierFieldName>{$ctx:identifierFieldName}</identifierFieldName>
<kbUsed>{$ctx:kbUsed}</kbUsed>
<updateRule>{$ctx:updateRule}</updateRule>
<syncActions>{$ctx:syncActions}</syncActions>
<updatedAt>{$ctx:updatedAt}</updatedAt>
<updatedBy>{$ctx:updatedBy}</updatedBy>
<uri>{$ctx:uri}</uri>
</eloqua.updateActivityImport> |
properties
importId: The id of the import.
name:
Name of the definition. Useful for reusing definitions.fields
: List of fields to be included in the operation.
autoDeleteDuration
: Time until the definition will be deleted.
isUpdatingMultipleMatchedRecords
: Specifies whether Eloqua should update multiple records if multiple records match the identifierFieldName.
createdAt:
Timestamp when the definition was created.
createdBy:
User who created the definition.
dataRetentionDuration:
Time until the staged data will be deleted.identifierFieldName
: Specifies which field to use to match the imported data to existing Eloqua data.updateRule:
Specifies how updates should be handled.kbUsed:
The amount of space required to store staged data.syncActions:
Specifies additional operations to import or export.updatedAt:
Timestamp when the definition was updated.updatedBy:
User who updated the definition.uri:
System- generated URI that defines the definition for future referencing.
Sample request
Following is a sample REST/JSON request that can be handled by the updateActivityImport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for updateActivityImport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"importId":"54",
"name":"testImport",
"fields":{"email":"Activity.Field(EmailAddress)","type":"Activity.Type"},
"identifierFieldName":"email"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/put-imports-id.htm
Anchor |
---|
| getActivityTypes |
---|
| getActivityTypes |
---|
|
Get Activity Types
The getActivityTypes
operation retrieves all activity types that match the specified criteria.
Code Block |
---|
language | xml |
---|
title | getActivityTypes |
---|
|
<eloqua.getActivityTypes>
<limit>{$ctx:limit}</limit>
<offset>{$ctx:offset}</offset>
<orderBy>{$ctx:orderBy}</orderBy>
<q>{$ctx:q}</q>
<totalResults>{$ctx:totalResults}</totalResults>
</eloqua.getActivityTypes> |
properties
limit
: Specifies maximum number of records to return.
offset
: Specifies an offset that allows to retrieve the next batch of records.
orderBy
: Term to order the results by..
q
: Specifies query criteria used to filter resultl.
totalResults
: The total number of records that satisfy the request.
Sample request
Following is a sample REST/JSON request that can be handled by the getActivityTypes
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityTypes |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"totalResults":"true",
"q":"name='E*'",
"orderBy":"name DESC",
"offset":"0",
"limit":"10"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-types.htm
Anchor |
---|
| getActivityTypeById |
---|
| getActivityTypeById |
---|
|
Get Activity Type By IdThe getActivityTypeById
operation retrieves the specified field.
Code Block |
---|
language | xml |
---|
title | getActivityTypeById |
---|
|
<eloqua.getActivityTypeById>
<typeId>{$ctx:typeId}</typeId>
</eloqua.getActivityTypeById> |
properties
typeId:
The id of the activity type.
Anchor |
---|
| sampleRequest |
---|
| sampleRequest |
---|
|
Sample RequestFollowing is a sample REST/JSON request that can be handled by getActivityTypeById
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityTypeById |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"typeId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-types-id.htm
Anchor |
---|
| getActivityImports |
---|
| getActivityImports |
---|
|
Get Activity Imports
The getActivityImports
operation retrieves all activity imports that match the specified criteria.
Code Block |
---|
language | xml |
---|
title | getActivityImports |
---|
|
<eloqua.getActivityImports>
<limit>{$ctx:limit}</limit>
<offset>{$ctx:offset}</offset>
<orderBy>{$ctx:orderBy}</orderBy>
<q>{$ctx:q}</q>
<totalResults>{$ctx:totalResults}</totalResults>
</eloqua.getActivityImports> |
properties
limit
: Specifies maximum number of records to return.
offset
: Specifies an offset that allows to retrieve the next batch of records.
orderBy
: Term to order the results by..
q
: Specifies query criteria used to filter resultl.
totalResults
: The total number of records that satisfy the request.
Sample request
Following is a sample REST/JSON request that can be handled by the getActivityImports
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityImports |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"totalResults":"true",
"q":"name='E*'",
"orderBy":"name DESC",
"offset":"0",
"limit":"10"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-imports.htm
Anchor |
---|
| getActivityImportById |
---|
| getActivityImportById |
---|
|
Get Activity Import By IdThe getActivityImportById
operation retrieves the specified import.
Code Block |
---|
language | xml |
---|
title | getActivityImportById |
---|
|
<eloqua.getActivityImportById>
<importId>{$ctx:importId}</importId>
</eloqua.getActivityImportById> |
properties
importId:
The id of the activity import.
Sample Request
Following is a sample REST/JSON request that can be handled by getActivityImportById
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityImportById |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"importdId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-imports-id.htm
Anchor |
---|
| getActivityExportById |
---|
| getActivityExportById |
---|
|
Get Activity Export By IdThe getActivityExportById
operation retrieves the specified export.
Code Block |
---|
language | xml |
---|
title | getActivityExportById |
---|
|
<eloqua.getActivityExportById>
<exportId>{$ctx:exportId}</exportId>
</eloqua.getActivityExportById> |
properties
exportId:
The id of the activity export.
Sample Request
Following is a sample REST/JSON request that can be handled by getActivityExportById
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityExportById |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-exports-id.htm
Anchor |
---|
| getActivityExportDataById |
---|
| getActivityExportDataById |
---|
|
Get Activity Export Data By IdThe getActivityExportDataById
operation retrieves the data for the specified activity export.
Code Block |
---|
language | xml |
---|
title | getActivityExportDataById |
---|
|
<eloqua.getActivityExportDataById>
<exportId>{$ctx:exportId}</exportId>
<limit>{$ctx:limit}</limit>
<offset>{$ctx:offset}</offset>
<totalResults>{$ctx:totalResults}</totalResults>
</eloqua.getActivityExportDataById> |
properties
exportId
: The id of the activity export.
limit
: Specifies maximum number of records to return.
offset
: Specifies an offset that allows to retrieve the next batch of records.
totalResults
: The total number of records that satisfy the request.
Sample Request
Following is a sample REST/JSON request that can be handled by getActivityExportDataById
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for getActivityExportDataById |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"1",
"totalResults":"true",
"offset":"2,
"limit":"1o"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/get-exports-id-data.htm
Anchor |
---|
| deleteActivityExport |
---|
| deleteActivityExport |
---|
|
Delete Activity ExportThe deleteActivityExport
operation deletes the specified export.
Code Block |
---|
language | xml |
---|
title | deleteActivityExport |
---|
|
<eloqua.deleteActivityExport>
<exportId>{$ctx:exportId}</exportId>
</eloqua.deleteActivityExport> |
properties
exportId:
The id of the activity export.
Sample Request
Following is a sample REST/JSON request that can be handled by deleteActivityExport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for deleteActivityExport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/delete-exports-id.htm
Anchor |
---|
| deleteActivityExportData |
---|
| deleteActivityExportData |
---|
|
Delete Activity Export DataThe deleteActivityExportData
operation deletes the specified export data.
Code Block |
---|
language | xml |
---|
title | deleteActivityExportData |
---|
|
<eloqua.deleteActivityExportData>
<exportId>{$ctx:exportId}</exportId>
</eloqua.deleteActivityExportData> |
properties
exportId:
The id of the activity export.
Sample Request
Following is a sample REST/JSON request that can be handled by deleteActivityExportData
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for deleteActivityExportData |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/delete-exports-id-data.htm
Anchor |
---|
| deleteActivityImport |
---|
| deleteActivityImport |
---|
|
Delete Activity ImportThe deleteActivityImport
operation deletes the specified import.
Code Block |
---|
language | xml |
---|
title | deleteActivityImport |
---|
|
<eloqua.deleteActivityImport>
<importId>{$ctx:importId}</importId>
</eloqua.deleteActivityImport> |
properties
importId:
The id of the activity import.
Sample Request
Following is a sample REST/JSON request that can be handled by deleteActivityImport
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for deleteActivityImport |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"exportId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/delete-imports-id.htm
Anchor |
---|
| deleteActivityImportData |
---|
| deleteActivityImportData |
---|
|
Delete Activity Import DataThe deleteActivityImportData
operation deletes the specified import data.
Code Block |
---|
language | xml |
---|
title | deleteActivityImportData |
---|
|
<eloqua.deleteActivityImportData>
<importId>{$ctx:importId}</importId>
</eloqua.deleteActivityImportData> |
properties
importId:
The id of the activity import.
Sample Request
Following is a sample REST/JSON request that can be handled by deleteActivityImportData
operation.
Code Block |
---|
language | xml |
---|
title | Sample request for deleteActivityImportData |
---|
|
{
"refreshToken":"MTYXXXXU5MDoxc2FtZGNnazJWay03SYWhYflNJTlkxY2VtQ2M1RDFrVmpifjlXaEJFV35Ddk9qelplQXXXXXXVNoT25D",
"redirectUri":"https://esbconnectors.blogspot.com",
"clientId":"1dxxx80-3848-4a3f-a225-6s92fexxxa8",
"clientSecret":"1K-yOHxxxgHr-Dm5saaskn0wsOj3eouQnbzXXXVT~NXXhdkldszB-dRad9TxHzcxxxFiiSSLtuL8zBZeXZ",
"apiVersion":"2.0",
"scope":"full",
"importId":"100001"
} |
http://docs.oracle.com/cloud/latest/marketingcs_gs/OMCBB/Content/D_Reference/endpoints/activities/delete-imports-id-data.htm
Sample ConfigurationFollowing is a sample proxy service that illustrates how to connect to Eloqua with the getAccessTokenFromRefreshToken
operation and use the getActivityTypeById
operation. The sample request for this proxy can be found in getActivityTypeById
sample request . You can use this sample as a template for using other operations in this category.
...