Grid
const url = 'https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/social/post/grid';const options = { method: 'POST', 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 POST \ --url https://api.wink.travel/api/managing-entity/d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69/social/post/grid \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --header 'Wink-Version: 2.0' \ --data nullReturns a paginated page of scheduled posts for the account driven by the supplied search/filter state.
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ”Fetch posts for this managing entity ID
Example
d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69Header Parameters
Section titled “Header Parameters ”Request Body required
Section titled “Request Body required ”Search and filter criteria
Paginated search request for managed social posts, supporting filtering by status, platform, keyword, and scheduled date range.
object
Number of records to be skipped by the pager.
Example
0Number of records to take.
Example
10Descriptors used for sorting result set.
Descriptor that defines the sort direction and field for ordering a result set.
object
Descriptors used for sorting result set
Example
ascData set field to sort on
Example
hotel.nameExample
{ "dir": "asc", "field": "hotel.name"}Filter by post status (APPROVED, DRAFT, PUBLISHED, CANCELLED, etc)
Example
APPROVEDFilter by target social platform
Example
WINK_LINKSFull-text search keyword
Example
luxury accommodationFilter by post scheduled date range
object
Retrieve data range starting with and including this start date
Example
2020-12-24Retrieve data range ending with and including this end date
Example
2020-12-31Example
{ "startDate": "2020-12-24", "endDate": "2020-12-31"}Example
{ "skip": 0, "take": 10, "sort": [ { "dir": "asc", "field": "hotel.name" } ], "status": "APPROVED", "platform": "WINK_LINKS", "term": "luxury accommodation", "scheduledDate": { "startDate": "2020-12-24", "endDate": "2020-12-31" }}Responses
Section titled “ Responses ”Paginated list of managed social posts matching the search criteria
A scheduled social media post belonging to a managing entity, containing content, metadata, and publishing details for a specific social platform.
object
Document UUID
Datetime this record was first created
Datetime this record was last updated
Version property that shows how many times this document has been persisted. Document will not persist if the version property is less than current version property in the system. Result in an optimistic locking exception.
The user ID that owns the account
The managing entity this post belongs to
The post customization/template identifier used to create this post
Status of post.
The structural intent of this post.
The language style used for this post.
Type of post.
A link to go with the text
object
The fully-qualified URL to link from the post
Human-readable description of the link destination shown alongside the URL
Short caption typically showing the domain of the URL
Optional geo-location
object
A single entry array under most circumstances in the language the post was created for.
Foundation class for storing multi-language content (names and descriptions) with content change detection throughout the Wink Platform.
object
Use as title or short text description
Longer text description
Indicate which language this description is written in.
Whether it was user or system generated.
The md5 hash of the name, description and language.
CDN image/media assets (most platforms support up to 10 images per post)
object
Document identifier
Use this identifier to communicate with Cloudinary.
Whether Cloudinary media is a VIDEO or IMAGE.
Currently ONLY using Cloudinary to store all image / video assets.
Sort allows you to control how you want to sort this record in a list of media records.
Media angle
Media width in pixels.
Media height in pixels.
Instead of deleting the media, choose to un-publish it instead for later re-use. Could be you keep seasonal images of the property.
Supported OTA specification PIC code. See OTA geoname data
Localized media captions to give user some context about where this media was taken.
Foundation class for storing multi-language content (names and descriptions) with content change detection throughout the Wink Platform.
object
Use as title or short text description
Longer text description
Indicate which language this description is written in.
Whether it was user or system generated.
The md5 hash of the name, description and language.
Associate this media with a specific lifestyle type. A user searching and filtering inventory based on lifestyles can be shown relevant media first.
Whether image has attribution properties
object
URL to contributor
Name of contributor
True if media width is greater or equal to height
Exact date and time when the post will be published (ISO 8601 format)
IANA timezone identifier (e.g. Asia/Bangkok, America/New_York)
Which platform to post to.
Platform-specific metadata for this post
object
Human-readable status explanation (typically used for error messages)
Example
{ "id": "3c6b1a5d-8e2f-4a0b-9c7d-6e4f0a8b2c51", "userIdentifier": "d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69", "ownerIdentifier": "d5b8a3c2-9e6f-4a1b-8d34-7c2e1f0a5b69", "customizationIdentifier": "d7e1b4f6-2c8a-4d2b-8f3e-6d9c7b2a0e5f", "status": "APPROVED", "postType": "TRANSACTIONAL", "toneOfVoice": "NEUTRAL", "type": "MANUAL", "descriptions": [ { "name": "Discover The Siam Residences", "description": "Experience luxury living in the heart of Bangkok.", "language": "en" } ], "userTags": [ "@luxurytravel" ], "hashTags": [ "#ThailandTravel" ], "scheduledDate": "2026-03-15T18:30:00Z", "timezone": "Asia/Bangkok", "platform": "FACEBOOK"}Bad Request — missing or invalid request parameter or body
object
object
Example
Unauthorized — authentication is required or the session has expired
object
object
Example
Forbidden — authenticated but lacking the required permission or scope
object
object
Example
Not Found — the requested resource does not exist
object
object
Example
Method Not Allowed — the HTTP verb is not supported on this endpoint
object
object
Example
Unsupported Media Type — use application/json
object
object
Example
Internal Server Error — an unexpected failure occurred on the server
object
object
Example
Service Unavailable — a downstream dependency is unreachable