GET v1/ShopOwners/{shopOwnerId}/EmailTemplates

Gets the email templates of a Shop Owner.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
shopOwnerId

The shop owner identifier.

integer

Required.

Body Parameters

None.

Response Information

Resource Description

The list of the email templates

Collection of EmailTemplateBasicInfo
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

Required

Name

Gets or sets the name.

string

Required

Max length: 50

Response Formats

application/json, text/json

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

application/xml, text/xml

Sample:
<ArrayOfEmailTemplateBasicInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <EmailTemplateBasicInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EmailTemplateBasicInfo>
  <EmailTemplateBasicInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
  </EmailTemplateBasicInfo>
</ArrayOfEmailTemplateBasicInfo>