POST Marketing/NewsletterIssue

GetNewsletterIssues with same parentID

Request Information

URI Parameters

None.

Body Parameters

GetNewsletterIssueRequest
NameDescriptionTypeAdditional information
ID

integer

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Lang": "sample string 2",
  "StoreID": 3
}

application/xml, text/xml

Sample:
<GetNewsletterIssueRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Marketing">
  <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang>
  <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID>
  <ID>1</ID>
</GetNewsletterIssueRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

NewsletterIssue
NameDescriptionTypeAdditional information
ID

integer

None.

Created

date

None.

PublishDate

Date this issue is planned to be published. For admin purposes.

date

None.

NewsletterID

integer

None.

Subject

Email subject

string

Required

String length: inclusive between 0 and 120

Body

Email body

string

Required

String length: inclusive between 0 and 256000

TemplateID

Template used to generate this newsletter issue Body

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Created": "2025-12-06T09:18:03.6446078+01:00",
  "PublishDate": "2025-12-06T09:18:03.6446078+01:00",
  "NewsletterID": 3,
  "Subject": "sample string 4",
  "Body": "sample string 5",
  "TemplateID": 1
}

application/xml, text/xml

Sample:
<NewsletterIssue xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Marketing">
  <Body>sample string 5</Body>
  <Created>2025-12-06T09:18:03.6446078+01:00</Created>
  <ID>1</ID>
  <NewsletterID>3</NewsletterID>
  <PublishDate>2025-12-06T09:18:03.6446078+01:00</PublishDate>
  <Subject>sample string 4</Subject>
  <TemplateID>1</TemplateID>
</NewsletterIssue>