For more information on using API

GET http://webapi.mymarketing.co.il/api/mailinglist

Get the full list of your MailingLists.

Request Information

URI Parameters

Body Parameters

None.

Response Information

Resource Description

Collection of MailingListInfoDTO

Name

Description

Type

Additional information

Id

Id

integer
Name

Name of the Mailing List

string

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2"
  },
  {
    "Id": 1,
    "Name": "sample string 2"
  }
]

application/xml, text/xml

Sample:
<ArrayOfMailingListInfoDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ActiveTrail.RESTfulApi.Models">
  <MailingListInfoDTO>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </MailingListInfoDTO>
  <MailingListInfoDTO>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </MailingListInfoDTO>
</ArrayOfMailingListInfoDTO>