POST api/popup/postPopupSettings

Request Information

URI Parameters

None.

Body Parameters

popupSettings
NameDescriptionTypeAdditional information
EPubPopupSettingId

integer

None.

AccountId

integer

None.

Top

integer

None.

Left

integer

None.

Width

integer

None.

Height

integer

None.

Timestamp

date

None.

Request Formats

application/json, text/json

Sample:
{
  "EPubPopupSettingId": 1,
  "AccountId": 2,
  "Top": 3,
  "Left": 4,
  "Width": 5,
  "Height": 6,
  "Timestamp": "2025-03-30T01:31:35.0315529-04:00"
}

application/xml, text/xml

Sample:
<popupSettings xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSAeReader.Common.API.Objects">
  <AccountId>2</AccountId>
  <EPubPopupSettingId>1</EPubPopupSettingId>
  <Height>6</Height>
  <Left>4</Left>
  <Timestamp>2025-03-30T01:31:35.0315529-04:00</Timestamp>
  <Top>3</Top>
  <Width>5</Width>
  <success>true</success>
</popupSettings>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ApiResultOfpopupSettings
NameDescriptionTypeAdditional information
Errors

ErrorModel

None.

Result

popupSettings

None.

IsSuccess

boolean

None.

StatusCode

HttpStatusCode

None.

Response Formats

application/json, text/json

Sample:
{
  "Errors": {
    "ErrorsNumber": 1,
    "Messages": [
      "sample string 1",
      "sample string 2"
    ],
    "MessagesString": "sample string 2"
  },
  "Result": {
    "EPubPopupSettingId": 1,
    "AccountId": 2,
    "Top": 3,
    "Left": 4,
    "Width": 5,
    "Height": 6,
    "Timestamp": "2025-03-30T01:31:35.0315529-04:00"
  },
  "IsSuccess": false,
  "StatusCode": 100
}

application/xml, text/xml

Sample:
<ApiResultOfpopupSettings8WPzUjNG xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CSAeReader.Common.API">
  <Errors>
    <ErrorsNumber>1</ErrorsNumber>
    <Messages xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
      <d3p1:string>sample string 1</d3p1:string>
      <d3p1:string>sample string 2</d3p1:string>
    </Messages>
    <MessagesString>sample string 2</MessagesString>
  </Errors>
  <Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/CSAeReader.Common.API.Objects">
    <d2p1:AccountId>2</d2p1:AccountId>
    <d2p1:EPubPopupSettingId>1</d2p1:EPubPopupSettingId>
    <d2p1:Height>6</d2p1:Height>
    <d2p1:Left>4</d2p1:Left>
    <d2p1:Timestamp>2025-03-30T01:31:35.0315529-04:00</d2p1:Timestamp>
    <d2p1:Top>3</d2p1:Top>
    <d2p1:Width>5</d2p1:Width>
    <d2p1:success>true</d2p1:success>
  </Result>
  <StatusCode>Continue</StatusCode>
</ApiResultOfpopupSettings8WPzUjNG>