GET v1/Issue/{issueKey}/Page/{page}/Sizes

This will return a single issue page available sizes.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
issueKey

The identifier for the issue you want

integer

Required

page

string

Required

Body Parameters

None.

Response Information

Resource Description

HTTP 200 with Issue if found, HTTP 404 Otherwise

PageSize
NameDescriptionTypeAdditional information
PageKey

Page Key Numeric Identifier. This will be the spread number when looking at spreads.

integer

None.

Device

"desktop" or "mobile"

string

None.

MaxDeviceWidth

integer

None.

DefaultWidth

integer

None.

DefaultHeight

integer

None.

MaxWidth

integer

None.

MaxHeight

integer

None.

SizeSequence

Sequence of sizes is important for array on frontend.

integer

None.

Pages

string

None.

Response Formats

application/json, text/json

Sample:
{
  "PageKey": 1,
  "Device": "sample string 2",
  "MaxDeviceWidth": 3,
  "DefaultWidth": 4,
  "DefaultHeight": 5,
  "MaxWidth": 6,
  "MaxHeight": 7,
  "SizeSequence": 8,
  "Pages": "sample string 9"
}

application/xml, text/xml

Sample:
<PageSize xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Repository.Models">
  <DefaultHeight>5</DefaultHeight>
  <DefaultWidth>4</DefaultWidth>
  <Device>sample string 2</Device>
  <MaxDeviceWidth>3</MaxDeviceWidth>
  <MaxHeight>7</MaxHeight>
  <MaxWidth>6</MaxWidth>
  <PageKey>1</PageKey>
  <Pages>sample string 9</Pages>
  <SizeSequence>8</SizeSequence>
</PageSize>