GET api/Comm/GetCopyright?shopId={shopId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| shopId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
CopyrightInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Logo | string |
None. |
|
| Copyright | string |
None. |
|
| TechnicalSupport | string |
None. |
|
| IsShowService | boolean |
None. |
|
| IsFree | boolean |
None. |
|
| IsNotLogo | boolean |
None. |
|
| IsClosePoster | boolean |
None. |
|
| ADTitle | string |
None. |
|
| ShareImg | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Logo": "sample string 1",
"Copyright": "sample string 2",
"TechnicalSupport": "sample string 3",
"IsShowService": true,
"IsFree": true,
"IsNotLogo": true,
"IsClosePoster": true,
"ADTitle": "sample string 8",
"ShareImg": "sample string 9"
}
application/xml, text/xml
Sample:
<CommController.CopyrightInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/open.wst.com.Controllers"> <ADTitle>sample string 8</ADTitle> <Copyright>sample string 2</Copyright> <IsClosePoster>true</IsClosePoster> <IsFree>true</IsFree> <IsNotLogo>true</IsNotLogo> <IsShowService>true</IsShowService> <Logo>sample string 1</Logo> <ShareImg>sample string 9</ShareImg> <TechnicalSupport>sample string 3</TechnicalSupport> </CommController.CopyrightInfo>