Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

 

Overview

MailUpService API allows to create and delete personal data filters

FiltersCreatePersonalDataFilter

This method creates a new filter to be applied on recipient's personal data

Method parameters

ParameterDescriptionExample
Id  
IdListSpecify here MailUp list ID (or 'NULL', if filter is applicable to all lists) 
NameNumber that identifies console ID 
Description  
Category  
Conditions[ ]

Array of conditions (at list one). Each condition is composed of the following fields:

  • Id
  • IdFilter
  • LogicalOperation (allowed values: AND, OR)
  • IdPersonalDataFieldType
  • Type
  • Value
 

FiltersDeletePersonalDataFilter

Method parameters

ParameterDescriptionExample
Token Access token, used for authentication 
IdFilterID of a previously crated filter 

SOAP Examples

SOAP request
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ifil="http://Mailup.WS/IFilterService">
	<soapenv:Header/>
	<soapenv:Body>
		<ifil:FiltersDeletePersonalDataFilter>
			<ifil:request>
				<ifil:AccessToken>h7FvEjVPdh3Mx0hfRXgpVYO5Rb0m/so+LpSrAi7NMCoAXrLfZJf1iO9HsqY9XjfwNVbvU0kDx/zVkz11k6zRAG=</ifil:AccessToken><ifil:IdFilter>56</ifil:IdFilter>
			</ifil:request>
		</ifil:FiltersDeletePersonalDataFilter>
	</soapenv:Body>
</soapenv:Envelope>
SOAP response
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
   <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
      <FiltersDeletePersonalDataFilterResponse xmlns="http://Mailup.WS/IFilterService">
         <FiltersDeletePersonalDataFilterResult/>
      </FiltersDeletePersonalDataFilterResponse>
   </s:Body>
</s:Envelope>

 

 

  • No labels