Individual
The following operations are supported. For a formal definition, please review the Service Description.
-
AddActionCode
Adds a new ActionCode for an actionlist -
AddActionCodes
Adds multiple ActionCodes at once for an actionlist -
AddRecordToActionList
Adds a new record to an ActionList -
AddRecordsToActionList
Adds a new batch of records to an ActionList -
AddToSegment
Adds a list of ids to a segment. -
CountUsersByConstraint
Gets the number of users of a List that correspond to the passed Constraint. -
CountUsersByFilter
Gets the number of users of a List that correspond to the passed Filter. -
CreateActionList
Creates a new ActionList. -
CreateSegment
Creates a new static segment for a list. -
CreateSegmentInfolder
Creates a new static segment for a list in a folder. -
CreateUser
Creates a new user for the given list -
GetActionCodes
Gets all Action Codes for an action list. -
GetActionLists
Returns an overview of the ActionLists that are available -
GetListID
Gets the id of a list using its name. -
GetLists
Gets the lists. -
GetPlannendCampaigns
Gets the campaigns that are scheduled to run. -
GetSegmentRecordCount
Gets the amount of recipients in a segment. -
GetSegments
Gets the segments for a specified list. -
GetSystemStatus
Gets the status of the system. -
GetUserByConstraint
Gets a user's properties for the given List and Constraint. -
GetUserByFilter
Gets a user's properties for the given List and Filter. -
GetUserByID
Gets a user's properties for the given List and UserID -
GetUsersByConstraint
Gets the ID values of users of a List that correspond to the passed Constraint and MaxCount. -
GetUsersByFilter
Gets the ID values of users of a List that correspond to the passed Filter and MaxCount. -
GetUsersXmlByConstraint
Gets users for a certain List given the Constraint to filter the results as XML. -
RetrieveHashForUser
Gets the HashCode for a user with given UserID in a List. -
TriggerCampaign
Triggers a Campaign. -
TriggerCampaignByXml
Triggers a Campaign. -
TriggerCampaignByXmlWithResult
Triggers a Campaign. -
TriggerCampaignForUser
Triggers a campaign for a specific user. -
TriggerCampaignForUserAndActionListItem
Triggers a campaign for a specific user using a specific actionlist record. -
TriggerCampaignForUserAndActionListItemWithResult
Triggers a campaign for a specific user using a specific actionlist record. -
TriggerCampaignForUserWithResult
Triggers a campaign for a specific user. -
TriggerCampaignWithResult
Triggers a Campaign. -
TriggerChannel
Triggers a channel by its name. -
TriggerChannelForUser
Triggers a Channel for a certain user by the name of the channel. -
UpdateUser
Updates the properties for a user for the given UserID in the given list. -
UpdateUsers
Updates multiple users at the time.
This web service is using http://tempuri.org/ as its default namespace.
Recommendation: Change the default namespace before the XML Web service is made public.
Each XML Web service needs a unique namespace in order for client applications to distinguish it from other services on the Web. http://tempuri.org/ is available for XML Web services that are under development, but published XML Web services should use a more permanent namespace.
Your XML Web service should be identified by a namespace that you control. For example, you can use your company's Internet domain name as part of the namespace. Although many XML Web service namespaces look like URLs, they need not point to actual resources on the Web. (XML Web service namespaces are URIs.)
For XML Web services creating using ASP.NET, the default namespace can be changed using the WebService attribute's Namespace property. The WebService attribute is an attribute applied to the class that contains the XML Web service methods. Below is a code example that sets the namespace to "http://microsoft.com/webservices/":
C#
[WebService(Namespace="http://microsoft.com/webservices/")] public class MyWebService { // implementation }
Visual Basic
<WebService(Namespace:="http://microsoft.com/webservices/")> Public Class MyWebService ' implementation End Class
C++
[WebService(Namespace="http://microsoft.com/webservices/")] public ref class MyWebService { // implementation };
For more details on XML namespaces, see the W3C recommendation on Namespaces in XML.
For more details on WSDL, see the WSDL Specification.
For more details on URIs, see RFC 2396.