Update rates via keyed list
const url = 'https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/extranet/rate/update';const options = { method: 'PUT', headers: { 'Wink-Version': '2.0', Authorization: 'Bearer <token>', 'Content-Type': 'application/json' }, body: '[null]'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PUT \ --url https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/extranet/rate/update \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Wink-Version: 2.0' \ --data '[ null ]'Apply per-day rate and availability changes using an explicit list of keyed daily rate updates. Each update identifies a specific date and master rate, then applies custom changes for that day. This endpoint supports updates to deltaQuantity with idempotency keys to safely adjust inventory over time.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Property identifier (managing entity UUID) owning the rates to update
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69Header Parameters
Section titled “Header Parameters ”Request Body required
Section titled “Request Body required ”Wrapper pairing a rate key with update values for a single daily rate
object
Rate identification key (hotel, rate plan, room, date)
object
Property identifier that owns this rate
Example
e2c7b4d3-1a8f-4e9c-b5d6-3a9f0e7c2b18Rate plan identifier for pricing and restrictions
Example
7a0c5d9e-2f6b-4c1a-8e4d-3b9f1a0c6d52Guest room (room type) identifier for this rate
Example
6f9b4c8d-1e5a-4b3c-9d2e-8a7f0c1b5e43Date this rate applies to
Example
2026-01-14Rate update values for this key
object
Absolute number of available rooms for this date. Set this OR deltaQuantity, not both.
Example
5Relative change to room availability (add/subtract). Use with idempotencyKey to prevent duplicate adjustments.
Example
1Idempotency key to prevent duplicate inventory adjustments when using deltaQuantity (e.g., ‘booking123:CREATED’)
Example
booking-f4d1c8e5-2b9a:CREATEDWhether this rate is available for booking on this date
Example
trueWhether the property is closed on arrival for this date
Example
falseWhether the property is closed on departure for this date
Example
falseMinimum length of stay required for arrivals on this date, in days. -1 means no minimum.
Example
2Maximum length of stay allowed for arrivals on this date, in days. -1 means no maximum.
Example
30Nightly rate amount (base rate)
Example
450ISO 4217 currency code for this rate
Example
USDRate modifier (fixed amount or percentage) for extra adult guests
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
Example
0.25A localized amount
object
Rate modifier (fixed amount or percentage) for extra child guests
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
Example
0.25A localized amount
object
Rate modifier (fixed amount or percentage) for single occupancy bookings
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
Example
0.25A localized amount
object
Responses
Section titled “ Responses ”Successfully updated daily rates. Returns list of updated Rate documents.
Holds all the information for one rate date
object
Unique document identifier (UUID)
Property identifier that owns this daily rate
Source of the rate update. TRAVELIKO indicates property-managed rates; other values indicate channel manager origins.
Rate plan identifier for pricing controls and restrictions
Guest room (room type) identifier for this rate
Nightly rate amount in the specified currency
ISO 4217 currency code for this rate
Whether this rate is available for booking on this date
Whether guests cannot check in on this date (Closed on Arrival)
Whether guests cannot check out on this date (Closed on Departure)
Day of the month (1-31)
Month of the year (1-12)
Year in ISO format
Number of available rooms for this date
Minimum length of stay (in days) required for guests arriving on this date. -1 means no minimum.
Maximum length of stay (in days) allowed for guests arriving on this date. -1 means no maximum.
Rate modifier (fixed amount or percentage) for single occupancy bookings
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Rate modifier (fixed amount or percentage) for extra adult guests
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Rate modifier (fixed amount or percentage) for extra child guests
object
When the type is FIXED, fixedAmount is required. When the type is PERCENTAGE, percent is required.
A percentage of the total stay amount for an early check-in or late check-out
A localized amount
object
Time-to-live (TTL) for this rate record in MongoDB. Records are automatically removed 24 hours after this instant.
Example
[ null]Invalid update list (empty list, missing required keys/values, invalid rate data)
object
object
Example generated
{ "type": "https://example.com", "title": "example", "status": 1, "detail": "example", "instance": "https://example.com", "properties": { "additionalProperty": "example" }}object
object
object
object
object
object
object
object
Authentication required
object
object
Insufficient permissions (INVENTORY:WRITE required)
object
object
Internal Server Error
object
Example generated
{}