PUT v1/ZoneJump/{zoneJumpKey}
Update a ZoneJump.
Roles Allowed
admin, editor
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| zoneJumpKey | decimal number |
Required |
Body Parameters
ZoneJumpUpdate| Name | Description | Type | Additional information |
|---|---|---|---|
| Destination |
The URL the ZoneJump points to |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Destination": "sample string 1"
}
application/xml, text/xml
Sample:
<ZoneJumpUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto"> <Destination>sample string 1</Destination> </ZoneJumpUpdate>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HTTP 200 with updated ZoneJump if found, HTTP 404 otherwise, HTTP 409 if validation fails
ZoneJump| Name | Description | Type | Additional information |
|---|---|---|---|
| ZoneJumpKey |
Unique identifier for a ZoneJump |
decimal number |
None. |
| PageLocation |
The PageLocation where the Jump exists. |
PageLocation |
None. |
| Destination |
The URL the ZoneJump points to |
string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ZoneJumpKey": 1.0,
"PageLocation": {
"PageLocationKey": 1,
"PageKey": 2,
"ULX": 3,
"ULY": 4,
"LRX": 5,
"LRY": 6,
"Width": 7,
"Height": 8
},
"Destination": "sample string 2"
}
application/xml, text/xml
Sample:
<ZoneJump xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Bondi.Models.V3.ApiDto">
<Destination>sample string 2</Destination>
<PageLocation>
<Height>8</Height>
<LRX>5</LRX>
<LRY>6</LRY>
<PageKey>2</PageKey>
<PageLocationKey>1</PageLocationKey>
<ULX>3</ULX>
<ULY>4</ULY>
<Width>7</Width>
</PageLocation>
<ZoneJumpKey>1</ZoneJumpKey>
</ZoneJump>