Get all campaign members
get
/crmRestApi/resources/11.13.18.05/campaignMembers
Request
Query Parameters
-
effectiveDate: string
This query parameter is used to fetch resources which are effective dated as of the specified start date. The value of this query parameter is a string having a date in yyyy-MM-dd format
-
expand: string
When this parameter is provided, the specified children are included in the resource payload (instead of just a link). The value of this query parameter is "all" or "". More than one child can be specified using comma as a separator. Example: ?expand=Employees,Localizations. Nested children can also be provided following the format "Child.NestedChild" (Example: ?expand=Employees.Managers). If a nested child is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?expand=Employees.Managers" is the same as "?expand=Employees,Employees.Managers" (which will expand Employees and Managers).
-
fields: string
This parameter filters the resource fields. Only the specified fields are returned, which means that if no fields are specified, no fields are returned (useful to get only the links). If an indirect child resource is provided (Example: Employees.Managers), the missing children will be processed implicitly. For example, "?fields=Employees.Managers:Empname" is the same as "?fields=;Employees:;Employees.Managers:Empname" (which will only return the "Empname" field for Managers). the value of this query parameter is a list of resource fields. The attribute can be a direct (Example: Employees) or indirect (Example: Employees.Managers) child. It cannot be combined with expand query parameter. If both are provided, only fields will be considered.
Format: ?fields=Attribute1,Attribute2
Format for fields in child resource: ?fields=Accessor1:Attribute1,Attribute2 -
finder: string
Used as a predefined finder to search the collection.
Format: ?finder=<finderName>;<variableName>=<variableValue>,<variableName2>=<variableValue2>
The following are the available finder names and corresponding finder variables:- CampaignMemberNumAltKey: Finds a campaign members with the specified alternate key.
Finder Variables:- CampaignMemberNumber; string; The alternate key identifier of the campaign member.
- CampaignMemberUniqueContactsFinder: Finds unique campaign member contacts for a campaign.
Finder Variables:- CampaignId; integer; The unique identifier of the campaign.
- SysEffectiveDate; object.
- CampaignMemberUniqueLeadsFinder: Finds unique campaign member leads for a campaign.
Finder Variables:- CampaignId; integer; The unique identifier of the campaign.
- SysEffectiveDate; object.
- PrimaryKey: Finds a campaign members with the specified primary key.
Finder Variables:- CampaignMemberId; integer; The unique identifier of the campaign member.
- CampaignMemberNumAltKey: Finds a campaign members with the specified alternate key.
-
limit: integer
This parameter restricts the number of resources returned inside the resource collection. If the limit exceeds the resource count then the framework will only return the available resources.
-
links: string
This parameter can be used to show only certain links while accessing a singular resource or a resource collection. The parameter value format is a comma-separated list of : <link_relation>
Example:
self,canonical -
offset: integer
Used to define the starting position of the resource collection. If offset exceeds the resource count then no resources are returned. Default value is 0.
-
onlyData: boolean
The resource item payload will be filtered in order to contain only data (no links section, for example).
-
orderBy: string
This parameter orders a resource collection based on the specified fields. The parameter value is a comma-separated string of attribute names, each optionally followed by a colon and "asc" or "desc". Specify "asc" for ascending and "desc" for descending. The default value is "asc". For example, ?orderBy=field1:asc,field2:desc
-
q: string
This query parameter defines the where clause. The resource collection will be queried using the provided expressions. The value of this query parameter is one or more expressions. Example: ?q=Deptno>=10 and <= 30;Loc!=NY
Format: ?q=expression1;expression2
You can use these queryable attributes to filter this collection resource using the q query parameter:- Active; string; Indicates whether the campaign member is active or not.
- CampaignCampaignName; string; The name of the campaign to which the campaign member belongs to.
- CampaignCampaignNumber; string; The unique identifier of the campaign to which the campaign member belongs to.
- CampaignEndDate; string; The date when marketing integration campaign ends.
- CampaignId; integer; The unique identifier of the campaign.
- CampaignMemberId; integer; The unique identifier of the campaign member.
- CampaignMemberNumber; string; The alternate key identifier of the campaign member.
- CampaignStartDate; string; The date when marketing integration campaign starts.
- CampaignStatus; string; The status of marketing integration campaign.
- CampaignType; string; The type of marketing integration campaign.
- ContactEmail; string; The email address of the contact associated with the campaign member.
- ContactId; integer; The unique identifier of the party associated with the campaign member.
- ContactPartyName; string; The name of the contact party associated with the campaign member.
- ContactPartyNumber; string; The unique alternate identifier of the contact associated with the campaign member.
- CreatedByModule; string; The module through which the campaign member can be created.
- CreationDate; string; The date when the campaign member was created.
- EmailAddress; string; The email address of the campaign member.
- LastUpdateDate; string; The date when the campaign member was last updated.
- LeadAccountName; string; The account name of the lead associated with the campaign member.
- LeadEmail; string; The email address of the lead associated with the campaign member.
- LeadId; integer; The unique identifier of the lead associated with the campaign member.
- LeadLeadName; string; The name of the lead associated with the campaign member.
- LeadLeadNumber; string; The unique alternate identifier of the lead associated with the campaign member.
- LeadOwnerName; string; The owner name of the lead associated with the campaign member.
- MemberResponseDate; string; The date when the response is received for the campaign member.
- MemberStatus; string; The status of the campaign member.
- MemberStatusLookupMeaning; string; The display label for the status of the campaign member.
- SourceSystemCampMemberId; string; The unique identifier of the campaign member in the source system.
-
totalResults: boolean
The resource collection representation will include the "estimated row count" when "?totalResults=true", otherwise the count is not included. The default value is "false".
Header Parameters
-
Effective-Of: string
This header accepts a string value. The string is a semi-colon separated list of
= . It is used to perform effective date range operations. The accepted parameters are RangeMode, RangeSpan, RangeStartDate, RangeEndDate, RangeStartSequence and RangeEndSequence. The parameter values are always strings. The possible values for RangeMode are SET_LOGICAL_START, SET_LOGICAL_END, END_DATE, SET_EFFECTIVE_START, SET_EFFECTIVE_END, REPLACE_CORRECTION, REPLACE_UPDATE, RECONCILE_CORRECTION, CORRECTION, RECONCILE_UPDATE, UPDATE, ZAP and DELETE_CHANGES. The possible values for RangeSpan are PHYSICAL_ROW_END_DATE and LOGICAL_ROW_END_DATE. The values for RangeStartDate and RangeEndDate have to be a string representation of a date in yyyy-MM-dd format. The value for RangeStartSequence and RangeEndSequence must be strings such that when parsed they yield positive integers. -
Metadata-Context: string
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version: string
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
There's no request body for this operation.
Back to TopResponse
Supported Media Types
- application/json
Default Response
The following table describes the default response for this task.
Headers
-
Metadata-Context:
If the REST API supports runtime customizations, the shape of the service may change during runtime. The REST client may isolate itself from these changes or choose to interact with the latest version of the API by specifying this header. For example: Metadata-Context:sandbox="TrackEmployeeFeature".
-
REST-Framework-Version:
The protocol version between a REST client and service. If the client does not specify this header in the request the server will pick a default version for the API.
Root Schema : campaignMembers
Type:
Show Source
object-
count(required): integer
The number of resource instances returned in the current range.
-
hasMore(required): boolean
Indicates whether more resources are available on the server than the subset returned in the response. If the value is true, then there are more resources to retrieve from the server. The default value is false.
-
items: array
Items
Title:
ItemsThe items in the collection. -
limit(required): integer
The actual paging size used by the server.
-
links(required): array
Links
Title:
LinksThe link relations associated with the resource instance. -
offset(required): integer
The offset value used in the current page.
-
totalResults: integer
The estimated row count when "?totalResults=true", otherwise the count is not included.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : campaignMembers-item-response
Type:
Show Source
object-
Active: string
Title:
Is ActiveMaximum Length:1Default Value:YIndicates whether the campaign member is active or not. -
CampaignCampaignName: string
Title:
NameRead Only:trueMaximum Length:100The name of the campaign to which the campaign member belongs to. -
CampaignCampaignNumber: string
Title:
Campaign NumberMaximum Length:30The unique identifier of the campaign to which the campaign member belongs to. -
CampaignEndDate: string
(date-time)
Title:
End DateRead Only:trueThe date when marketing integration campaign ends. -
CampaignId: integer
(int64)
Title:
Campaign IdentifierThe unique identifier of the campaign. -
CampaignMemberId: integer
(int64)
Title:
Campaign Member IDThe unique identifier of the campaign member. -
CampaignMemberNumber: string
Title:
Campaign Member NumberMaximum Length:30The alternate key identifier of the campaign member. -
CampaignStartDate: string
(date-time)
Title:
Start DateRead Only:trueThe date when marketing integration campaign starts. -
CampaignStatus: string
Title:
StatusRead Only:trueMaximum Length:30Default Value:ORA_DRAFTThe status of marketing integration campaign. -
CampaignType: string
Title:
TypeRead Only:trueMaximum Length:30The type of marketing integration campaign. -
ContactEmail: string
Title:
Contact EmailRead Only:trueMaximum Length:320The email address of the contact associated with the campaign member. -
ContactId: integer
(int64)
Title:
Contact IDThe unique identifier of the party associated with the campaign member. -
ContactPartyName: string
Title:
Contact NameRead Only:trueMaximum Length:360The name of the contact party associated with the campaign member. -
ContactPartyNumber: string
Title:
Contact NumberMaximum Length:30The unique alternate identifier of the contact associated with the campaign member. -
CreatedBy: string
Title:
Created ByRead Only:trueMaximum Length:64The user who created the campaign member. -
CreatedByModule: string
Title:
Created by ModuleMaximum Length:60Default Value:ORA_WSThe module through which the campaign member can be created. -
CreationDate: string
(date-time)
Title:
Creation DateRead Only:trueThe date when the campaign member was created. -
CurrencyCode: string
Title:
CurrencyMaximum Length:15The code indicating the currency associated with the campaign member, such as USD or GBP. -
DeleteFlag: boolean
Title:
Can Be DeletedRead Only:trueIndicates whether the campaign member can be deleted by the logged in user. -
EmailAddress: string
Title:
EmailMaximum Length:320The email address of the campaign member. -
LastUpdateDate: string
(date-time)
Title:
Last Updated DateRead Only:trueThe date when the campaign member was last updated. -
LastUpdatedBy: string
Title:
Last Updated ByRead Only:trueMaximum Length:64The user who last updated the campaign member. -
LastUpdateLogin: string
Title:
Last Update LoginRead Only:trueMaximum Length:32The login of the user who last updated the campaign member. -
LeadAccountName: string
Title:
Lead AccountRead Only:trueMaximum Length:360The account name of the lead associated with the campaign member. -
LeadEmail: string
Title:
Lead EmailRead Only:trueMaximum Length:320The email address of the lead associated with the campaign member. -
LeadId: integer
(int64)
Title:
Lead IDThe unique identifier of the lead associated with the campaign member. -
LeadLeadName: string
Title:
Lead NameRead Only:trueMaximum Length:250The name of the lead associated with the campaign member. -
LeadLeadNumber: string
Title:
Lead NumberMaximum Length:30The unique alternate identifier of the lead associated with the campaign member. -
LeadOwnerName: string
Title:
Lead OwnerRead Only:trueMaximum Length:360The owner name of the lead associated with the campaign member. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MemberResponseDate: string
(date-time)
Title:
Response DateThe date when the response is received for the campaign member. -
MemberStatus: string
Title:
Member StatusMaximum Length:30Default Value:ORA_SENTThe status of the campaign member. -
MemberStatusLookupMeaning: string
Title:
Member StatusRead Only:trueMaximum Length:80The display label for the status of the campaign member. -
smartActions: array
Smart Actions
Title:
Smart ActionsThis VO stores the endpoint and security details for every user action. -
SourceSystemCampMemberId: string
Title:
Source System Campaign Member IDMaximum Length:100The unique identifier of the campaign member in the source system. -
UpdateFlag: boolean
Title:
Can Be UpdatedRead Only:trueIndicates whether the campaign member can be updated by the logged in user.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : Smart Actions
Type:
arrayTitle:
Smart ActionsThis VO stores the endpoint and security details for every user action.
Show Source
Nested Schema : link
Type:
Show Source
object-
href: string
Title:
hyperlink referenceThe URI to the related resource. -
kind: string
Title:
kindAllowed Values:[ "collection", "item", "describe", "other" ]The kind of the related resource. -
name: string
Title:
nameThe name of the link to the related resource. -
properties: object
properties
-
rel: string
Title:
relationAllowed Values:[ "self", "lov", "parent", "canonical", "child", "enclosure", "action", "custom" ]The name of the relation to the resource instance. Example: self.
Nested Schema : properties
Type:
Show Source
object-
changeIndicator: string
Change indicator or the ETag value of the resource instance.
Nested Schema : campaignMembers-smartActions-item-response
Type:
Show Source
object-
ActionIntent: string
(byte)
Title:
Action IntentJSON object that describes what an action does and what context data can be passed to the action. -
ConfirmationMessage: string
Title:
Confirmation MessageMaximum Length:4000A message to seek confirmation for the action being performed. -
ContentType: string
Title:
Content TypeMaximum Length:50The content type to use when invoking the REST endpoint. -
DisplayLabel: string
Title:
Action NameMaximum Length:256Consumer-friendly action name. -
Entity: string
Title:
Parent EntityMaximum Length:150REST Resources the action belongs to. -
Href: string
Title:
REST EndpointMaximum Length:1024The REST endpoint to perform the action. -
IncludedInApplication: string
Title:
Included in ApplicationMaximum Length:512List of applications that this action can be used in. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MassActionFlag: boolean
Title:
Mass ActionMaximum Length:1Boolean type indicating if this action can be mass processed. -
Method: string
Title:
HTTP MethodMaximum Length:15HTTP method to use with HREF. -
ObjectFunctionName: string
Title:
Object FunctionMaximum Length:64The object function associated with the smart action. -
PageType: string
Title:
Page TypeMaximum Length:256The list of pages that this action can be used in. -
SmartSuggestFlag: boolean
Title:
Smart SuggestMaximum Length:1Indicates if smart suggest is enabled for the action. -
SystemActionFlag: boolean
Title:
System ActionMaximum Length:1Boolean type indicating if the action is seeded or custom. -
UpdateOfAttributes: string
Title:
Attributes to UpdateMaximum Length:512Attributes to be updated when the Actions UI is launched. -
UserActionId: integer
(int64)
Title:
User Action IDUniquely identifies the action. For internal use. -
UserActionName: string
Title:
Action NameMaximum Length:256Uniquely identifies the action with a name. For internal use. - UserActionNavigation: array Smart Action User Interface Definitions
-
UserActionRank: integer
(int64)
Title:
PriorityNumber to indicate priority of the action. -
UserActionRequestPayload: array
Smart Action REST Payload Definitions
Title:
Smart Action REST Payload DefinitionsIf an LOV required for constructing a request payload needs to post data, the payload metadata is stored here. -
UserActionURLBinding: array
Smart Action User Interface Definitions
Title:
Smart Action User Interface DefinitionsBinding metadata for a variable in the URL.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : Smart Action REST Payload Definitions
Type:
arrayTitle:
Smart Action REST Payload DefinitionsIf an LOV required for constructing a request payload needs to post data, the payload metadata is stored here.
Show Source
Nested Schema : Smart Action User Interface Definitions
Type:
arrayTitle:
Smart Action User Interface DefinitionsBinding metadata for a variable in the URL.
Show Source
Nested Schema : campaignMembers-smartActions-UserActionRequestPayload-item-response
Type:
Show Source
object-
Binding: string
Title:
Payload Value Binding TypeMaximum Length:64Indicates the binding type of the value. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
MandatoryFlag: boolean
Title:
MandatoryMaximum Length:1Boolean value indicating if the payload is mandatory. -
RequestPayloadId: integer
(int64)
Uniquely identifies the payload for smart actions. For internal use.
-
RequestPayloadName: string
Title:
Request Payload Attribute NameMaximum Length:256The key in the Key Value pair that forms the payload. -
SmartSuggestPath: string
Title:
Smart Suggest PathMaximum Length:2048The path used for smart suggest. -
SystemActionFlag: boolean
Title:
System ActionMaximum Length:1Default Value:falseBoolean value. -
Value: string
Title:
Request Payload Attribute ValueMaximum Length:1000The value in the Key Value pair that forms the payload. -
ValueStruct: string
Title:
Payload Value StructureMaximum Length:20If the value in the Key Value pair isn't a single value, this would be set.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Nested Schema : campaignMembers-smartActions-UserActionURLBinding-item-response
Type:
Show Source
object-
Binding: string
Title:
URL Binding TypeMaximum Length:64This is a hint for processing the Url Binding runtime. -
links: array
Links
Title:
LinksThe link relations associated with the resource instance. -
SystemActionFlag: boolean
Title:
System ActionMaximum Length:1Default Value:falseBoolean indicator. -
URLBindingId: integer
(int64)
Uniquely identifies the URL Bind for smart actions. For internal use.
-
URLBindingName: string
Title:
URL Binding Parameter NameMaximum Length:256For action REST endpoints that require runtime binding, this is the key in the key value pair. -
Value: string
Title:
URL Binding Parameter ValueMaximum Length:1000For action REST endpoints that require runtime binding, this is the value in the key value pair.
Nested Schema : Links
Type:
arrayTitle:
LinksThe link relations associated with the resource instance.
Show Source
Examples
The following example shows how to get all campaign members by submitting a get request on the REST resource using cURL.
cURL Command
curl -u <username:password> \ -X
https://servername.fa.us2.oraclecloud.com/fscmRestApi/resources/11.13.18.05/campaignMembers
Example of Response Body
The following shows an example of the response body in JSON format.
{
"items": [
{
"CampaignId": 300100182332573,
"CampaignMemberId": 300100182466478,
"CampaignMemberNumber": "CDRM_1",
"ContactId": 300100182222633,
"CreatedBy": "SALES_ADMIN",
"CreatedByModule": "ORA_WS",
"CreationDate": "2019-09-06T08:07:42+00:00",
"CurrencyCode": "USD",
"EmailAddress": null,
"LastUpdateDate": "2019-09-06T08:07:43.534+00:00",
"LastUpdateLogin": "915B97A3570215E0E053A15AF00AEA7B",
"LastUpdatedBy": "SALES_ADMIN",
"LeadId": 300100182222714,
"MemberStatus": "ORA_RESPONDED",
"SourceSystemCampMemberId": null,
"ContactPartyName": "BIQA_ELQ_SA_CONTACT1 LAST_NAME1",
"CampaignCampaignName": "BIQA_ELQ_CAMPAIGN1",
"CampaignCampaignNumber": "CDRM_1",
"LeadLeadName": "BIQA_ELQ_SA_LEAD1",
"UpdateFlag": true,
"DeleteFlag": true,
"MemberStatusLookupMeaning": "Responded",
"MemberResponseDate": "2019-09-06T00:00:00+00:00",
"ContactPartyNumber": "CDRM_880751",
"LeadLeadNumber": "CDRM_81800",
"LeadAccountName": null,
"LeadOwnerName": "Gabrielle Lee",
"LeadEmail": null,
"ContactEmail": null,
"links": [
{
"rel": "self",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers/CDRM_1",
"name": "campaignMembers",
"kind": "item",
"properties": {
"changeIndicator": "ACED0005737200136A6176612E7574696C2E41727261794C6973747881D21D99C7619D03000149000473697A65787000000001770400000001737200116A6176612E6C616E672E496E746567657212E2A0A4F781873802000149000576616C7565787200106A6176612E6C616E672E4E756D62657286AC951D0B94E08B02000078700000000178"
}
},
{
"rel": "canonical",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers/CDRM_1",
"name": "campaignMembers",
"kind": "item"
},
{
"rel": "lov",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers/CDRM_1/lov/CurrencyCodeVA",
"name": "CurrencyCodeVA",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers/CDRM_1/lov/MemberStatusVA",
"name": "MemberStatusVA",
"kind": "collection"
},
{
"rel": "lov",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers/CDRM_1/lov/CreatedByModuleVA",
"name": "CreatedByModuleVA",
"kind": "collection"
}
]
},
.....
],
"count": 25,
"hasMore": true,
"limit": 25,
"offset": 0,
"links": [
{
"rel": "self",
"href": "https://servername.fa.us2.oraclecloud.com/crmRestApi/resources/11.13.18.05/campaignMembers",
"name": "campaignMembers",
"kind": "collection"
}
]
}