Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourYellow
titleDEPRECATED

 

Table of Contents

 

Overview

Version 1.1 of MailUp MailUpService web services uses a different hostname than v. 1.0 and it has the following features:

...

Endpoints

SOAP:   https://services.mailup.com/1.1/MailUpService.svc

REST:   https://services.mailup.com/1.1/MailUpService.svc/restprovides new methods that allow cross domain requests (with HTTP GET) using JSONP

Endpoints

JSONP:  https://services.mailup.com/1.1/MailUpService.svc/jsonp

 

Methods

...

Note

...

  • AuthenticationLogin
  • AuthenticationLogout

...

  • FiltersCreatePersonalDataFilter
  • FiltersDeletePersonalDataFilter
  • FiltersCreateActivityFilter
  • FiltersDeleteActivityFilter
  • FiltersCreateGeographicFilter
  • FiltersDeleteGeographicFilter

...

Authentication token is required, you can retreive it by means of LoginFromId (available in any of SOAP API web services) or using Authentication method provided by MailUpService 1.0

CategoryDescriptionAvailable methods
EmailsThis group includes methods that manage email messages
  • EmailsRead (plus)
ListsThis group allows lists management
  • ListsRead (plus)

 

Using

...

As specified in WSDL, SOAP methods receives a specific "request" object as input parameter and return a specific "response" object. Please refer to the description of each method for more details.

Error Handling

In case of error a standard SOAP Fault object is returned (more on this)

Using REST

...

JSONP

Each request is done using HTTP GET and the following format:

 https://services.mailup.com/1.1/MailUpService.svc/rest/Ping).
Required parameter format is the same as what is specified for SOAP requests (see example below).

Restrictions

...

jsonp/MethodName?parameter1=value1&parameter2=value2

 

JSONP-enabled methodsparametersnotes
ListsRead
  1. token
  2. idList
Returns available lists, similar to MailUpSend.GetLists.
Example:   https://services.mailup.com/1.1/MailUpService.svc

...

Configuration

 

Info

Please refer to REST configuration page to get some tips about enabling REST

 

Example

Please refer to examples provided for v. 1.0 (link).

 

Using JSONP

...

/jsonp/ListsRead?token=tuhsWU7StetLw2tYp7CryKhFyzDQnSpBZJVHzFLmahSeaDmGAK8/zyOzsEhr&idList=1
EmailsRead
  1. token

Returns available email messages for specified list, skipping cloned messages.
Provides the same reusult as MailUpSend.CloneMessages

 

Code Example

A detailed example is provided at this page: link