Skip to content
This repository has been archived by the owner on Apr 25, 2024. It is now read-only.

merging hotel ads changes (PR 27) #28

Merged
merged 3 commits into from
Nov 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 9 additions & 1 deletion BingAds/hotel-ads/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ ms.author: "scottwhi"

For information about changes that were included with each release, see the following sections.

## November 8, 2017

### Nonbreaking changes

- Added the production endpoint (see [Endpoints](../hotel-service/reference.md#endpoints)).

- Fixed documentation error: Removed Paused as a possible value from the `Status` field of [Hotel](../hotel-service/reference.md#hotel), [HotelGroup](../hotel-service/reference.md#hotelgroup), and [Subaccount](../hotel-service/reference.md#subaccount).

## October 15, 2017

Released the Beta version of Hotel Ads.
Expand Down Expand Up @@ -46,7 +54,7 @@ Released the Beta version of Hotel Ads.

#### Nonbreaking changes

- Added the `BidMultiplierSource` field to the [Hotel](../hotel-service/reference.md#hotel) and [HotelGroup](../hotel-service/reference.md#hotelgroup) objects. The source field indicates whether the object inherits or defines the bid multiplers. For example, if hotel object inherits the multipliers from the subaccount, `BidMultiplierSource` is SubAccount.
- Added the `BidMultiplierSource` field to the [Hotel](../hotel-service/reference.md#hotel) and [HotelGroup](../hotel-service/reference.md#hotelgroup) objects. The source field indicates whether the object inherits or defines the bid multipliers. For example, if hotel object inherits the multipliers from the subaccount, `BidMultiplierSource` is SubAccount.

- Added support for the [$select](../hotel-service/reference.md#select-param) OData query parameter. You can use the parameter to select the fields that you want the response to include.

Expand Down
2 changes: 1 addition & 1 deletion BingAds/hotel-service/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ms.author: "scottwhi"

<a name="doyouhavecredentials"/>
## Do you have your Bing Ads credentials?
To use the Hotel API, you must have a Bing Ads account and a Microsoft account. To get a Bing Ads account, go to [http://bingads.microsoft.com](http://bingads.microsoft.com). If you're not signed in to your Microsoft account, you'll be redirected to sign in to your Microsoft account or sign up for a Microsoft account. After signing in, you'll have the option to **Sign up for a new Bing Ads account**. Select the sign up option and continue with the sign up process.
To use the Hotel API, you must have a Bing Ads account and a Microsoft account. To get a Bing Ads account, go to [http://bingads.microsoft.com](http://bingads.microsoft.com). If you're not signed in to your Microsoft account, you'll be redirected to sign in to your Microsoft account or sign up for a Microsoft account. After signing in, you'll have the option to **Sign up for a new Bing Ads account**. Select the sign-up option and continue with the sign-up process.

Unlike the other Bing Ads APIs, the Hotel API does not use a developer token. The API ignores it if you include it.

Expand Down
14 changes: 8 additions & 6 deletions BingAds/hotel-service/manage-hotel-campaigns.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ The subaccount specifies the default bid and bid multipliers to use for hotel gr

For details about the valid bid range and budget for your market, see the Currency Value table in the [Currencies](../guides/currencies.md) topic.

To pause a subaccount, set the `Bid` or `Budget` property to zero (0.0). All hotels in the paused subaccount will not serve. To activate the subaccount, set `Bid` and `Budget` to a value greater than zero.
To prevent hotels in the subaccount from serving, set the `Bid` or `Budget` property to zero (0.0).

To update a subaccount, send a PATCH request. The body of the request is a [SubAccount](../hotel-service/reference.md#subaccount) object. Include only the properties that you want to update. This example shows updating multipliers.

Expand Down Expand Up @@ -154,7 +154,7 @@ Accept: application/json
Host: <host>
```

The response contains a contains a [SubAccount](../hotel-service/reference.md#subaccount) object.
The response contains a [SubAccount](../hotel-service/reference.md#subaccount) object.

```
HTTP/1.1 200 OK
Expand Down Expand Up @@ -324,9 +324,10 @@ The hotel group specifies the default bid and bid multipliers to use for hotels

For details about the valid bid range and budget for your market, see the Currency Value table in the [Currencies](../guides/currencies.md) topic.

If the subaccount specifies the a maximum bid, the hotel group's bid must be less than the subaccount's maximum bid.
If the subaccount specifies a maximum bid, the hotel group's bid must be less than the subaccount's maximum bid.

To prevent hotels in a hotel group from serving, set the `Bid` property to zero (0.0). If the `Bid` property to greater than zero but the hotels in the group are not serving, it may be because the `Bid` or `Budget` property of the subaccount that the group belongs to is zero.

To pause a hotel group, set the `Bid` property to zero (0.0). All hotels in the paused hotel group will not serve. To activate the hotel group, set `Bid` to a value greater than zero.

To update a hotel group, send a PATCH request. The body of the request is a [HotelGroup](../hotel-service/reference.md#hotelgroup) object. Include only the properties that you want to update. This example shows updating the bid and multipliers.

Expand Down Expand Up @@ -538,9 +539,10 @@ The hotel specifies the bid and bid multipliers to use for hotel ads. The hotel

For details about the valid bid range for your market, see the Currency Value table in the [Currencies](../guides/currencies.md) topic.

If the subaccount specifies the a maximum bid, the hotel's bid must be less than the subaccount's maximum bid.
If the subaccount specifies a maximum bid, the hotel's bid must be less than the subaccount's maximum bid.

To prevent a hotel from serving, set the `Bid` property to zero (0.0). If the `Bid` property to greater than zero but the hotel is not serving, it may be because the `Bid` property of the hotel group or subaccount that it belongs to is zero.

To pause a hotel, set the `Bid` property to zero (0.0). Paused hotels will not serve. To activate the hotel, set `Bid` to a value greater than zero. A hotel will also not serve if the hotel group or subaccount that it belongs to is paused.

To update a hotel, send a PATCH request. The body of the request is a [Hotel](../hotel-service/reference.md#hotel) object. Include only the properties that you want to update. This example shows updating the multipliers.

Expand Down