POST api/PortalGeneral/SaveThemeImages

Request Information

URI Parameters

None.

Body Parameters

ThemeImage
NameDescriptionTypeAdditional information
Logobase64data

string

None.

Faviconbase64data

string

None.

HaId

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Logobase64data": "sample string 1",
  "Faviconbase64data": "sample string 2",
  "HaId": 3
}

text/html

Sample:
{"Logobase64data":"sample string 1","Faviconbase64data":"sample string 2","HaId":3}

application/xml, text/xml

Sample:
<ThemeImage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalEditor.Model.Models">
  <Faviconbase64data>sample string 2</Faviconbase64data>
  <HaId>3</HaId>
  <Logobase64data>sample string 1</Logobase64data>
</ThemeImage>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Status

boolean

None.

IsException

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "IsException": true,
  "Message": "sample string 3",
  "Data": {}
}

text/html

Sample:
{"Status":true,"IsException":true,"Message":"sample string 3","Data":{}}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PortalEditor.Model.Models">
  <Data />
  <IsException>true</IsException>
  <Message>sample string 3</Message>
  <Status>true</Status>
</Response>