# Get Links Endpoint: POST /travel-details Version: 2.0.0 Security: oAuth, bearerAuth ## Request fields (application/json): - `status` (string) Enum: "unseen", "seen" - `tid` (string) Example: "ABCD-EFGH-IJKL" - `reference_id` (any) - `trip_name` (any) - `destinations` (array) - `nationalities` (array) Example: ["DE","AT"] - `start_date` (object) - `start_date.<` (string) Example: "2020-01-01" - `start_date.<=` (string) Example: "2020-01-01" - `start_date.=` (string) Example: "2020-01-01" - `start_date.>=` (string) Example: "2020-01-01" - `start_date.>` (string) Example: "2020-01-01" - `end_date` (object) - `created_at` (object) - `sort_by` (string) Enum: "created_at", "start_date" - `sort_order` (string) Enum: "asc", "desc" ## Response 200 fields (application/json): - `data` (array) - `data.tid` (string) Example: "ABCD-EFGH-IJKL" - `data.reference_id` (string,null) Example: "REF-123" - `data.trip_name` (string) Example: "Trip Name" - `data.destinations` (array) Example: ["TR","ZA","AE"] - `data.nationalities` (array) Example: ["DE","AT"] - `data.start_date` (string) Example: "2020-01-01" - `data.end_date` (string) Example: "2020-01-07" - `data.tour_operators` (array) Tour operator content will be displayed on the travel details link for records with the given codes. Example: ["tour_operator_1","tour_operator_2"] - `data.individual_contents` (array) Individual content sections will be displayed on the travel details link for the given codes. Example: ["individual_content_section_1","individual_content_section_2"] - `data.cover_media` (string,null) Travel detail link will show a cover media which has the given UUID. - `data.note` (string,null) Example: "A note about the trip." - `data.visits` (integer) - `data.last_visited_at` (string) Example: "2020-01-01 00:00:00" - `data.last_important_change_at` (string) Example: "2020-01-01 00:00:00" - `data.created_at` (string) Example: "2020-01-01 00:00:00" - `links` (object) - `links.first` (string) - `links.prev` (string) - `links.next` (string) - `links.last` (string) - `meta` (object) - `meta.per_page` (number) - `meta.current_page` (number) - `meta.from` (number) - `meta.to` (number) - `meta.total` (number) - `meta.last_page` (number) - `meta.path` (string) - `requestid` (string) Unique Request ID identifying this request. - `responsetime` (number) Time taken to generate response.