PUT Marketing/ModifyNewsletterIssue
Request Information
URI Parameters
None.
Body Parameters
NewsletterIssueBinding| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
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. |
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": 1,
"PublishDate": "2025-12-06T05:42:37.2417528+01:00",
"NewsletterID": 2,
"Subject": "sample string 3",
"Body": "sample string 4",
"TemplateID": 1,
"Lang": "sample string 5",
"StoreID": 6
}
application/xml, text/xml
Sample:
<NewsletterIssueBinding 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 5</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">6</StoreID> <Body>sample string 4</Body> <NewsletterID>2</NewsletterID> <PublishDate>2025-12-06T05:42:37.2417528+01:00</PublishDate> <Subject>sample string 3</Subject> <TemplateID>1</TemplateID> <ID>1</ID> </NewsletterIssueBinding>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
integerResponse Formats
application/json, text/json
Sample:
1
application/xml, text/xml
Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>