Changes for page 1. SearchTourPackages

Last modified by Giorgi Mdivnishvili on 2025/02/12 15:25

From version 15.1
edited by Giorgi Mdivnishvili
on 2023/12/26 14:44
Change comment: There is no comment for this version
To version 20.1
edited by Giorgi Mdivnishvili
on 2024/01/09 12:59
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -6,13 +6,15 @@
6 6  
7 7  = Method Description =
8 8  
9 -The initial method of the integration process is authorization. You will be provided with a test user username and password to generate the access token that you will need to pass in all the following methods.
9 +Tour package mean, tour with hotel and flight together. Using this method gives data about full package availability with flight and hotel options.
10 10  
11 +It's possible to receive data as current dates, also in date ranges using parameter  "stayDays": 0,   "stayDaysTo": 0. the maximum difference between the days can be 7. Below you can see examples.
11 11  
13 +
12 12  == Endpoint URL - [POST] ==
13 13  
14 14  {{info}}
15 -[[https:~~/~~/online-api.kazunion.com/api/TourPackages/SearchTourPackages>>https://online-api.kazunion.com/api/TourPackages/SearchTourPackages]]
17 +[[https:~~/~~/integration.kazunion.com/api/TourPackages/SearchTourPackages>>https://integration.kazunion.com/api/TourPackages/SearchTourPackages]]
16 16  {{/info}}
17 17  
18 18  == Request Parameters ==
... ... @@ -761,7 +761,7 @@
761 761  
762 762  === Paging and Caching ===
763 763  
764 -During the first request, Paging id must be  empty like this  ( "pagingId": "",)  pagenumber is the number of the page, pagerowcount means number of the given result in one page. So in the first request we can search
766 +During the first request, Paging id must be  empty like this  ( "pagingId": "",)  pagenumber is the number of the page, pagerowcount means number of the given result in one page. So in the first request we can search like this:
765 765  
766 766  
767 767  ==== first request ====
... ... @@ -777,6 +777,8 @@
777 777  
778 778  ==== Request with caching ====
779 779  
782 +as we receive response, in the end we can see pagingId- number, chich we can use for caching, and then just switch pagenumbers. for cleaning cache, it's important to make new request without pagingID
783 +
780 780  {{code language="Json"}}
781 781   {
782 782   "pagingId": "80",
... ... @@ -824,4 +824,22 @@
824 824  {{/code}}
825 825  
826 826  
827 -
831 +
832 +== Important ==
833 +
834 +{{error}}
835 +It's Important to in every other request header, put Auth token
836 +
837 +**Key **- Authorization
838 +
839 +**Value **- Bearer Token what is given in this response.
840 +
841 +
842 +**also note in headers that:**
843 +
844 +Content-Type - application/json
845 +
846 +**Key - **X-nugios-timezone
847 +
848 +**Value **- 240
849 +{{/error}}