PUT api/FeedBeaconBid?systemName={systemName}&username={username}&password={password}
Updates an existing feed beacon bid
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
systemName | string |
Required |
|
username | string |
Required |
|
password | string |
Required |
Body Parameters
APIFeedBeaconBidName | Description | Type | Additional information |
---|---|---|---|
Id |
Unique identifier |
integer |
None. |
FeedAdGroupId |
Unique identifier of feed ad group to which this belongs |
integer |
None. |
State |
Status: Active, Closed or Suspended |
string |
None. |
BeaconId |
Unique identifier of beacon to which this relates |
integer |
None. |
CreationTimestamp |
Timestamp when this was created |
string |
None. |
ManuallyHalted |
Denotes that this has been manually paused |
boolean |
None. |
DefaultImpressionPrice |
Default impression price |
decimal number |
None. |
DefaultClickPrice |
Default click price |
decimal number |
None. |
URLSuffix |
Suffix appended to click through URL |
string |
None. |
Request Formats
application/json, text/json
Sample:
{ "id": 1, "feedAdGroupId": 2, "state": "sample string 3", "beaconId": 1, "creationTimestamp": "sample string 4", "manuallyHalted": true, "defaultImpressionPrice": 1.1, "defaultClickPrice": 1.1, "urlSuffix": "sample string 5" }
application/xml, text/xml
Sample:
<APIFeedBeaconBid xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Rochester.Models"> <BeaconId>1</BeaconId> <CreationTimestamp>sample string 4</CreationTimestamp> <DefaultClickPrice>1.1</DefaultClickPrice> <DefaultImpressionPrice>1.1</DefaultImpressionPrice> <FeedAdGroupId>2</FeedAdGroupId> <Id>1</Id> <ManuallyHalted>true</ManuallyHalted> <State>sample string 3</State> <URLSuffix>sample string 5</URLSuffix> </APIFeedBeaconBid>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
None.