EMEventGetEventDetails Method
|
Alterian Email Manager 6.2.3 SDK Help File
Gets all campaigns where this event is used and all the urls associated with this event.
Namespace:
DMLibrary
Assembly:
DMLibrary (in DMLibrary.dll) Version: 1.0.6340.17420
Syntaxpublic static EMEvent GetEventDetails(
DMToken token,
int eventId,
int maxUsedByUrlsToReturn = 0
)
Public Shared Function GetEventDetails (
token As DMToken,
eventId As Integer,
Optional maxUsedByUrlsToReturn As Integer = 0
) As EMEvent
public:
static EMEvent^ GetEventDetails(
DMToken^ token,
int eventId,
int maxUsedByUrlsToReturn = 0
)
static member GetEventDetails :
token : DMToken *
eventId : int *
?maxUsedByUrlsToReturn : int
(* Defaults:
let _maxUsedByUrlsToReturn = defaultArg maxUsedByUrlsToReturn 0
*)
-> EMEvent
DMLibrary.EMEvent.GetEventDetails = function(token, eventId, maxUsedByUrlsToReturn);
Parameters
- token
- Type: DMToken
Authentication Token - eventId
- Type: SystemInt32
Existing Event Id - maxUsedByUrlsToReturn (Optional)
- Type: SystemInt32
Optional parameter. Maximum number of URLs and UsedBy Creatives to return.
Leave blank or 0 to return all.
Return Value
Type:
EMEventEMEvent containing only two properties: UsedBy (a list of EMDocuments) and URLS (associated urls)
See Also