Get a single marker
const url = 'https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/studio/map/marker/9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61';const options = { method: 'GET', headers: {'Wink-Version': '2.0', Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/studio/map/marker/9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61 \ --header 'Authorization: Bearer <token>' \ --header 'Wink-Version: 2.0'Retrieve the map marker for a specific channel inventory item.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”UUID of the managing entity that owns the inventory.
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69UUID of the channel inventory item to display as a marker.
Example
9b7e4c3a-1f6d-4e8a-b2f9-5d3c0a8e7b61Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”OK
Represents a single inventory item displayed as a marker on a map
object
Unique identifier of the channel inventory or list item represented by this marker
Geographic location coordinates as a GeoJSON Point (longitude, latitude)
object
UUID of the supplier (hotel or property) owning this inventory
Display name of the supplier property
UUID of the specific inventory item (e.g., room type or add-on)
Classification of the inventory (e.g., GUEST_ROOM, ADD_ON, RESTAURANT, ACTIVITY)
Human-friendly name of the inventory item
Lowest available price for this inventory in the user’s requested currency
object
Example
nullBad Request
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
Unauthorized
object
object
Forbidden
object
object
Internal Server Error
object
Example generated
{}