@gofynd/fdk-client-javascript 1.0.3 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (175) hide show
  1. package/README.md +31 -2
  2. package/index.d.ts +4 -4
  3. package/index.js +9 -10
  4. package/package.json +14 -14
  5. package/sdk/APIClient.d.ts +11 -0
  6. package/sdk/APIClient.js +35 -0
  7. package/sdk/Client.d.ts +6 -0
  8. package/sdk/Client.js +17 -0
  9. package/sdk/Config.d.ts +9 -0
  10. package/sdk/Config.js +17 -0
  11. package/sdk/application/Cart/CartApplicationClient.js +29 -28
  12. package/sdk/application/Cart/CartApplicationModel.js +3 -1
  13. package/sdk/application/Catalog/CatalogApplicationClient.js +43 -42
  14. package/sdk/application/Catalog/CatalogApplicationModel.js +1 -1
  15. package/sdk/application/Common/CommonApplicationClient.js +5 -4
  16. package/sdk/application/Communication/CommunicationApplicationClient.js +6 -5
  17. package/sdk/application/Configuration/ConfigurationApplicationClient.js +21 -20
  18. package/sdk/application/Content/ContentApplicationClient.js +26 -25
  19. package/sdk/application/Content/ContentApplicationModel.js +1 -0
  20. package/sdk/application/FileStorage/FileStorageApplicationClient.js +6 -5
  21. package/sdk/application/Lead/LeadApplicationClient.js +10 -9
  22. package/sdk/application/Logistic/LogisticApplicationClient.d.ts +1 -3
  23. package/sdk/application/Logistic/LogisticApplicationClient.js +11 -12
  24. package/sdk/application/Logistic/LogisticApplicationValidator.js +0 -1
  25. package/sdk/application/Order/OrderApplicationClient.js +15 -14
  26. package/sdk/application/Order/OrderApplicationModel.js +9 -0
  27. package/sdk/application/Payment/PaymentApplicationClient.js +42 -41
  28. package/sdk/application/PosCart/PosCartApplicationClient.js +30 -29
  29. package/sdk/application/PosCart/PosCartApplicationModel.js +3 -1
  30. package/sdk/application/Rewards/RewardsApplicationClient.js +11 -10
  31. package/sdk/application/Share/ShareApplicationClient.js +10 -9
  32. package/sdk/application/Theme/ThemeApplicationClient.js +7 -6
  33. package/sdk/application/User/UserApplicationClient.js +38 -37
  34. package/sdk/common/AxiosHelper.js +17 -6
  35. package/sdk/constructUrl.d.ts +5 -0
  36. package/sdk/constructUrl.js +13 -0
  37. package/sdk/index.d.ts +3 -0
  38. package/sdk/index.js +5 -0
  39. package/sdk/platform/Analytics/AnalyticsPlatformApplicationClient.js +3 -1
  40. package/sdk/platform/Analytics/AnalyticsPlatformApplicationValidator.js +1 -1
  41. package/sdk/platform/Analytics/AnalyticsPlatformClient.js +5 -4
  42. package/sdk/platform/Analytics/AnalyticsPlatformValidator.js +1 -0
  43. package/sdk/platform/AuditTrail/AuditTrailPlatformClient.js +3 -2
  44. package/sdk/platform/AuditTrail/AuditTrailPlatformValidator.js +1 -0
  45. package/sdk/platform/Billing/BillingPlatformClient.js +3 -2
  46. package/sdk/platform/Billing/BillingPlatformValidator.js +1 -0
  47. package/sdk/platform/Cart/CartPlatformApplicationClient.d.ts +27 -0
  48. package/sdk/platform/Cart/CartPlatformApplicationClient.js +177 -1
  49. package/sdk/platform/Cart/CartPlatformApplicationValidator.d.ts +3 -0
  50. package/sdk/platform/Cart/CartPlatformApplicationValidator.js +17 -1
  51. package/sdk/platform/Cart/CartPlatformModel.js +7 -3
  52. package/sdk/platform/Catalog/CatalogPlatformApplicationClient.js +3 -1
  53. package/sdk/platform/Catalog/CatalogPlatformApplicationValidator.js +1 -1
  54. package/sdk/platform/Catalog/CatalogPlatformClient.d.ts +2 -2
  55. package/sdk/platform/Catalog/CatalogPlatformClient.js +6 -9
  56. package/sdk/platform/Catalog/CatalogPlatformModel.js +7 -7
  57. package/sdk/platform/Catalog/CatalogPlatformValidator.js +2 -1
  58. package/sdk/platform/Common/CommonPlatformClient.js +7 -18
  59. package/sdk/platform/Common/CommonPlatformValidator.js +1 -0
  60. package/sdk/platform/Communication/CommunicationPlatformApplicationClient.js +3 -1
  61. package/sdk/platform/Communication/CommunicationPlatformApplicationValidator.js +1 -1
  62. package/sdk/platform/Communication/CommunicationPlatformClient.js +4 -3
  63. package/sdk/platform/Communication/CommunicationPlatformValidator.js +1 -0
  64. package/sdk/platform/CompanyProfile/CompanyProfilePlatformClient.js +5 -4
  65. package/sdk/platform/CompanyProfile/CompanyProfilePlatformValidator.js +1 -0
  66. package/sdk/platform/Configuration/ConfigurationPlatformApplicationClient.js +3 -1
  67. package/sdk/platform/Configuration/ConfigurationPlatformApplicationValidator.js +1 -1
  68. package/sdk/platform/Configuration/ConfigurationPlatformClient.js +9 -8
  69. package/sdk/platform/Configuration/ConfigurationPlatformValidator.js +1 -0
  70. package/sdk/platform/Content/ContentPlatformApplicationClient.d.ts +0 -10
  71. package/sdk/platform/Content/ContentPlatformApplicationClient.js +3 -62
  72. package/sdk/platform/Content/ContentPlatformApplicationValidator.d.ts +0 -1
  73. package/sdk/platform/Content/ContentPlatformApplicationValidator.js +1 -7
  74. package/sdk/platform/Content/ContentPlatformModel.js +1 -0
  75. package/sdk/platform/Discount/DiscountPlatformClient.js +3 -2
  76. package/sdk/platform/Discount/DiscountPlatformValidator.js +1 -0
  77. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.d.ts +3 -3
  78. package/sdk/platform/FileStorage/FileStoragePlatformApplicationClient.js +27 -5
  79. package/sdk/platform/FileStorage/FileStoragePlatformApplicationValidator.js +1 -1
  80. package/sdk/platform/FileStorage/FileStoragePlatformClient.d.ts +3 -3
  81. package/sdk/platform/FileStorage/FileStoragePlatformClient.js +28 -6
  82. package/sdk/platform/FileStorage/FileStoragePlatformValidator.js +1 -0
  83. package/sdk/platform/Inventory/InventoryPlatformClient.js +3 -2
  84. package/sdk/platform/Inventory/InventoryPlatformValidator.js +1 -0
  85. package/sdk/platform/Lead/LeadPlatformApplicationClient.js +3 -1
  86. package/sdk/platform/Lead/LeadPlatformApplicationValidator.js +1 -1
  87. package/sdk/platform/Lead/LeadPlatformClient.js +4 -3
  88. package/sdk/platform/Lead/LeadPlatformValidator.js +1 -0
  89. package/sdk/platform/Order/OrderPlatformApplicationClient.js +3 -1
  90. package/sdk/platform/Order/OrderPlatformApplicationValidator.js +1 -1
  91. package/sdk/platform/Order/OrderPlatformClient.d.ts +1 -1
  92. package/sdk/platform/Order/OrderPlatformClient.js +16 -3
  93. package/sdk/platform/Order/OrderPlatformModel.js +1 -0
  94. package/sdk/platform/Order/OrderPlatformValidator.js +1 -0
  95. package/sdk/platform/Partner/PartnerPlatformApplicationClient.js +3 -1
  96. package/sdk/platform/Partner/PartnerPlatformApplicationValidator.js +1 -1
  97. package/sdk/platform/Payment/PaymentPlatformApplicationClient.d.ts +1 -1
  98. package/sdk/platform/Payment/PaymentPlatformApplicationClient.js +14 -14
  99. package/sdk/platform/Payment/PaymentPlatformApplicationValidator.js +1 -1
  100. package/sdk/platform/Payment/PaymentPlatformClient.js +3 -2
  101. package/sdk/platform/Payment/PaymentPlatformValidator.js +1 -0
  102. package/sdk/platform/PlatformClient.d.ts +13 -9
  103. package/sdk/platform/PlatformClient.js +13 -9
  104. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.d.ts +4 -4
  105. package/sdk/platform/Rewards/RewardsPlatformApplicationClient.js +36 -17
  106. package/sdk/platform/Rewards/RewardsPlatformApplicationValidator.js +1 -1
  107. package/sdk/platform/Share/SharePlatformApplicationClient.js +3 -1
  108. package/sdk/platform/Share/SharePlatformApplicationValidator.js +1 -1
  109. package/sdk/platform/Theme/ThemePlatformApplicationClient.js +3 -1
  110. package/sdk/platform/Theme/ThemePlatformApplicationValidator.js +1 -1
  111. package/sdk/platform/User/UserPlatformApplicationClient.js +3 -1
  112. package/sdk/platform/User/UserPlatformApplicationValidator.js +1 -1
  113. package/sdk/platform/Webhook/WebhookPlatformClient.js +3 -2
  114. package/sdk/platform/Webhook/WebhookPlatformValidator.js +1 -0
  115. package/sdk/public/Configuration/ConfigurationPublicClient.js +2 -0
  116. package/sdk/public/Inventory/InventoryPublicClient.js +2 -0
  117. package/sdk/public/Webhook/WebhookPublicClient.js +2 -0
  118. package/.github/workflows/on_create_release.yml +0 -23
  119. package/.github/workflows/on_merge_main.yml +0 -38
  120. package/.github/workflows/on_pull_request.yml +0 -35
  121. package/.prettierrc +0 -5
  122. package/documentation/application/CART.md +0 -8771
  123. package/documentation/application/CATALOG.md +0 -8690
  124. package/documentation/application/COMMON.md +0 -325
  125. package/documentation/application/COMMUNICATION.md +0 -387
  126. package/documentation/application/CONFIGURATION.md +0 -2212
  127. package/documentation/application/CONTENT.md +0 -2629
  128. package/documentation/application/FILESTORAGE.md +0 -442
  129. package/documentation/application/LEAD.md +0 -1549
  130. package/documentation/application/LOGISTIC.md +0 -689
  131. package/documentation/application/ORDER.md +0 -2937
  132. package/documentation/application/PAYMENT.md +0 -4475
  133. package/documentation/application/POSCART.md +0 -9375
  134. package/documentation/application/README.md +0 -21
  135. package/documentation/application/REWARDS.md +0 -554
  136. package/documentation/application/SHARE.md +0 -635
  137. package/documentation/application/THEME.md +0 -5517
  138. package/documentation/application/USER.md +0 -3798
  139. package/documentation/platform/ANALYTICS.md +0 -1012
  140. package/documentation/platform/AUDITTRAIL.md +0 -493
  141. package/documentation/platform/BILLING.md +0 -1889
  142. package/documentation/platform/CART.md +0 -4711
  143. package/documentation/platform/CATALOG.md +0 -20522
  144. package/documentation/platform/COMMON.md +0 -325
  145. package/documentation/platform/COMMUNICATION.md +0 -4970
  146. package/documentation/platform/COMPANYPROFILE.md +0 -1646
  147. package/documentation/platform/CONFIGURATION.md +0 -6316
  148. package/documentation/platform/CONTENT.md +0 -8364
  149. package/documentation/platform/DISCOUNT.md +0 -767
  150. package/documentation/platform/FILESTORAGE.md +0 -945
  151. package/documentation/platform/INVENTORY.md +0 -1136
  152. package/documentation/platform/LEAD.md +0 -4394
  153. package/documentation/platform/ORDER.md +0 -6525
  154. package/documentation/platform/PARTNER.md +0 -193
  155. package/documentation/platform/PAYMENT.md +0 -3138
  156. package/documentation/platform/README.md +0 -27
  157. package/documentation/platform/REWARDS.md +0 -919
  158. package/documentation/platform/SHARE.md +0 -513
  159. package/documentation/platform/THEME.md +0 -35446
  160. package/documentation/platform/USER.md +0 -2174
  161. package/documentation/platform/WEBHOOK.md +0 -485
  162. package/documentation/public/CONFIGURATION.md +0 -325
  163. package/documentation/public/INVENTORY.md +0 -508
  164. package/documentation/public/WEBHOOK.md +0 -246
  165. package/jest.config.d.ts +0 -4
  166. package/jest.config.js +0 -6
  167. package/tests/application/catalog.spec.js +0 -54
  168. package/tests/common/action-url.spec.js +0 -35
  169. package/tests/common/schema/action-url.json +0 -178
  170. package/tests/common/schema/url-action.json +0 -683
  171. package/tests/common/url-action.spec.js +0 -48
  172. package/tests/helpers/cookie.helper.js +0 -31
  173. package/tests/helpers/oauth.helper.js +0 -43
  174. package/tests/platform/catalog.spec.js +0 -49
  175. package/tests/public/location.spec.js +0 -39
@@ -1,2629 +0,0 @@
1
-
2
-
3
-
4
-
5
-
6
- ##### [Back to Application docs](./README.md)
7
-
8
- ## Content Methods
9
- Content System
10
-
11
- * [getAnnouncements](#getannouncements)
12
- * [getBlog](#getblog)
13
- * [getBlogs](#getblogs)
14
- * [getDataLoaders](#getdataloaders)
15
- * [getFaqBySlug](#getfaqbyslug)
16
- * [getFaqCategories](#getfaqcategories)
17
- * [getFaqCategoryBySlug](#getfaqcategorybyslug)
18
- * [getFaqs](#getfaqs)
19
- * [getFaqsByCategorySlug](#getfaqsbycategoryslug)
20
- * [getLandingPage](#getlandingpage)
21
- * [getLegalInformation](#getlegalinformation)
22
- * [getNavigations](#getnavigations)
23
- * [getPage](#getpage)
24
- * [getPages](#getpages)
25
- * [getSEOConfiguration](#getseoconfiguration)
26
- * [getSlideshow](#getslideshow)
27
- * [getSlideshows](#getslideshows)
28
- * [getSupportInformation](#getsupportinformation)
29
- * [getTags](#gettags)
30
-
31
-
32
-
33
- ## Methods with example and description
34
-
35
-
36
-
37
-
38
- ### getAnnouncements
39
- Get live announcements
40
-
41
-
42
-
43
- ```javascript
44
- // Promise
45
- const promise = content.getAnnouncements();
46
-
47
- // Async/Await
48
- const data = await content.getAnnouncements();
49
- ```
50
-
51
-
52
-
53
-
54
-
55
-
56
- Announcements are useful to highlight a message or information on top of a webpage. Use this API to retrieve live announcements. Get announcements on individual pages or for all pages.
57
-
58
- *Returned Response:*
59
-
60
-
61
-
62
-
63
- [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
64
-
65
- Success. Returns a JSON object with the details of the announcement shown on an individual page. `$all` is a special slug to indicate that an announcement is being shown on all the pages. Check the example shown below or refer `AnnouncementsResponseSchema` for more details.
66
-
67
-
68
-
69
-
70
- <details>
71
- <summary><i>&nbsp; Examples:</i></summary>
72
-
73
-
74
- <details>
75
- <summary><i>&nbsp; Announcements enabled</i></summary>
76
-
77
- ```json
78
- {
79
- "value": {
80
- "announcements": {
81
- "$all": [
82
- {
83
- "announcement": "<link rel=\"stylesheet\" type=\"text/css\" href=\"https://cdnjs.cloudflare.com/ajax/libs/github-markdown-css/2.9.0/github-markdown.min.css\" /> <div class=\"markdown-body\" style='padding: 12px; color: #000; background-color: #fff;'><p>test Announcement</p>\n</div>",
84
- "schedule": {
85
- "start": "2021-03-31T11:22:08.167Z"
86
- }
87
- }
88
- ]
89
- },
90
- "refresh_rate": 900,
91
- "refresh_pages": []
92
- }
93
- }
94
- ```
95
- </details>
96
-
97
- <details>
98
- <summary><i>&nbsp; No Announcement enabled</i></summary>
99
-
100
- ```json
101
- {
102
- "value": {
103
- "announcements": {},
104
- "refresh_rate": 900,
105
- "refresh_pages": []
106
- }
107
- }
108
- ```
109
- </details>
110
-
111
- </details>
112
-
113
-
114
-
115
-
116
-
117
-
118
-
119
-
120
-
121
- ---
122
-
123
-
124
- ### getBlog
125
- Get a blog
126
-
127
-
128
-
129
- ```javascript
130
- // Promise
131
- const promise = content.getBlog({ slug : value,
132
- rootId : value });
133
-
134
- // Async/Await
135
- const data = await content.getBlog({ slug : value,
136
- rootId : value });
137
- ```
138
-
139
-
140
-
141
-
142
-
143
- | Argument | Type | Required | Description |
144
- | --------- | ----- | -------- | ----------- |
145
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a blog. You can get slug value from the endpoint /service/application/content/v1.0/blogs/. |
146
- | rootId | string | no | ID given to the HTML element |
147
-
148
-
149
-
150
- Use this API to get the details of a blog using its slug. Details include the title, reading time, publish status, feature image, tags, author, etc.
151
-
152
- *Returned Response:*
153
-
154
-
155
-
156
-
157
- [BlogSchema](#BlogSchema)
158
-
159
- Success. Returns a JSON object with blog details. Check the example shown below or refer `BlogSchema` for more details.
160
-
161
-
162
-
163
-
164
- <details>
165
- <summary><i>&nbsp; Examples:</i></summary>
166
-
167
-
168
- <details>
169
- <summary><i>&nbsp; default</i></summary>
170
-
171
- ```json
172
- {
173
- "value": {
174
- "_id": "5eaa451a21a4dd75f0fd96c5",
175
- "application": "5d3ebd89f540e7506b8b3548",
176
- "tags": [
177
- "abhinav"
178
- ],
179
- "title": "my first blog",
180
- "slug": "1st_blog",
181
- "feature_image": {
182
- "secure_url": "https://google.com"
183
- },
184
- "content": [
185
- {
186
- "type": "html",
187
- "value": "<p>hey there!</p>"
188
- }
189
- ],
190
- "_schedule": {
191
- "cron": "* 10 * * *",
192
- "start": "2021-03-31T23:30:00.000Z",
193
- "end": "2021-03-31T23:55:00.000Z",
194
- "duration": 1000,
195
- "next_schedule": [
196
- {
197
- "start": "2021-03-17T04:30:00.000Z",
198
- "end": "2021-03-17T04:46:40.000Z"
199
- }
200
- ]
201
- },
202
- "published": true,
203
- "author": {
204
- "name": "Fynd App"
205
- },
206
- "date_meta": {
207
- "created_on": "2021-03-14T06:49:03.945Z",
208
- "modified_on": "2021-03-14T06:49:03.945Z"
209
- }
210
- }
211
- }
212
- ```
213
- </details>
214
-
215
- </details>
216
-
217
-
218
-
219
-
220
-
221
-
222
-
223
-
224
-
225
- ---
226
-
227
-
228
- ### getBlogs
229
- Get a list of blogs
230
-
231
-
232
-
233
- ```javascript
234
- // Promise
235
- const promise = content.getBlogs({ pageNo : value,
236
- pageSize : value });
237
-
238
- // Async/Await
239
- const data = await content.getBlogs({ pageNo : value,
240
- pageSize : value });
241
- ```
242
-
243
-
244
-
245
-
246
-
247
- | Argument | Type | Required | Description |
248
- | --------- | ----- | -------- | ----------- |
249
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
250
- | pageSize | number | no | The number of items to retrieve in each page. |
251
-
252
-
253
-
254
- Use this API to get all the blogs.
255
-
256
- *Returned Response:*
257
-
258
-
259
-
260
-
261
- [BlogGetResponse](#BlogGetResponse)
262
-
263
- Success. Check the example shown below or refer `BlogGetResponse` for more details.
264
-
265
-
266
-
267
-
268
- <details>
269
- <summary><i>&nbsp; Examples:</i></summary>
270
-
271
-
272
- <details>
273
- <summary><i>&nbsp; default</i></summary>
274
-
275
- ```json
276
- {
277
- "value": {
278
- "items": [
279
- {
280
- "date_meta": {
281
- "created_on": "2021-03-14T06:49:03.945Z",
282
- "modified_on": "2021-03-14T06:49:03.945Z"
283
- },
284
- "tags": [],
285
- "_id": "604db275b3ae202873964d94",
286
- "content": [
287
- {
288
- "type": "html",
289
- "value": "<p>test abhinav</p>"
290
- }
291
- ],
292
- "title": "1st Blog",
293
- "slug": "1st-blog",
294
- "published": true,
295
- "_schedule": {
296
- "next_schedule": [
297
- {}
298
- ],
299
- "start": "2021-04-08T07:15:13.000Z",
300
- "end": "2021-04-10T02:00:00.000Z"
301
- },
302
- "feature_image": {
303
- "secure_url": ""
304
- },
305
- "application": "000000000000000000000001",
306
- "author": {
307
- "name": "Fynd App"
308
- }
309
- }
310
- ],
311
- "page": {
312
- "type": "number",
313
- "current": 1,
314
- "size": 1,
315
- "item_total": 2,
316
- "has_next": true
317
- }
318
- }
319
- }
320
- ```
321
- </details>
322
-
323
- </details>
324
-
325
-
326
-
327
-
328
-
329
-
330
-
331
-
332
-
333
- ---
334
-
335
-
336
- ### getDataLoaders
337
- Get the data loaders associated with an application
338
-
339
-
340
-
341
- ```javascript
342
- // Promise
343
- const promise = content.getDataLoaders();
344
-
345
- // Async/Await
346
- const data = await content.getDataLoaders();
347
- ```
348
-
349
-
350
-
351
-
352
-
353
-
354
- Use this API to get all selected data loaders of the application in the form of tags.
355
-
356
- *Returned Response:*
357
-
358
-
359
-
360
-
361
- [DataLoadersSchema](#DataLoadersSchema)
362
-
363
- Success. Returns a JSON object containing all the data loaders injected in the application. Check the example shown below or refer `DataLoadersSchema` for more details.
364
-
365
-
366
-
367
-
368
- <details>
369
- <summary><i>&nbsp; Example:</i></summary>
370
-
371
- ```json
372
- {
373
- "items": [
374
- {
375
- "name": "Algolia",
376
- "is_selected": false,
377
- "type": "url",
378
- "_id": "61bc4523a7ffc7504f4de4a5",
379
- "service": "catalog",
380
- "operation_id": "fetchSuggestions",
381
- "url": "/ext/example/url"
382
- },
383
- {
384
- "name": "Algolia v3",
385
- "is_selected": false,
386
- "type": "url",
387
- "_id": "61bc452da7ffc7504f4de4a7",
388
- "service": "catalog",
389
- "operation_id": "fetchSuggestions",
390
- "url": "/ext/example/url"
391
- }
392
- ]
393
- }
394
- ```
395
- </details>
396
-
397
-
398
-
399
-
400
-
401
-
402
-
403
-
404
-
405
- ---
406
-
407
-
408
- ### getFaqBySlug
409
- Get an FAQ
410
-
411
-
412
-
413
- ```javascript
414
- // Promise
415
- const promise = content.getFaqBySlug({ slug : value });
416
-
417
- // Async/Await
418
- const data = await content.getFaqBySlug({ slug : value });
419
- ```
420
-
421
-
422
-
423
-
424
-
425
- | Argument | Type | Required | Description |
426
- | --------- | ----- | -------- | ----------- |
427
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ. You can get slug value from the endpoint /service/application/content/v1.0/faq. |
428
-
429
-
430
-
431
- Use this API to get a particular FAQ by its slug.
432
-
433
- *Returned Response:*
434
-
435
-
436
-
437
-
438
- [FaqSchema](#FaqSchema)
439
-
440
- Success. Returns a question and answer by its slug. Check the example shown below or refer `FaqSchema` for more details.
441
-
442
-
443
-
444
-
445
- <details>
446
- <summary><i>&nbsp; Example:</i></summary>
447
-
448
- ```json
449
- {
450
- "_id": "5eb2db750a8ebf497e315028",
451
- "question": "how to refer my friend",
452
- "answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
453
- "slug": "how to refer",
454
- "application": "000000000000000000000001"
455
- }
456
- ```
457
- </details>
458
-
459
-
460
-
461
-
462
-
463
-
464
-
465
-
466
-
467
- ---
468
-
469
-
470
- ### getFaqCategories
471
- Get a list of FAQ categories
472
-
473
-
474
-
475
- ```javascript
476
- // Promise
477
- const promise = content.getFaqCategories();
478
-
479
- // Async/Await
480
- const data = await content.getFaqCategories();
481
- ```
482
-
483
-
484
-
485
-
486
-
487
-
488
- FAQs can be divided into categories. Use this API to get a list of FAQ categories.
489
-
490
- *Returned Response:*
491
-
492
-
493
-
494
-
495
- [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
496
-
497
- Success. Returns a JSON object with categories of FAQ. Check the example shown below or refer `GetFaqCategoriesSchema` for more details.
498
-
499
-
500
-
501
-
502
- <details>
503
- <summary><i>&nbsp; Example:</i></summary>
504
-
505
- ```json
506
- {
507
- "categories": [
508
- {
509
- "index": 0,
510
- "children": [
511
- "6026426ae507768b168dee4b"
512
- ],
513
- "title": "Test",
514
- "_id": "60263f80c83c1f89f2863a8a",
515
- "slug": "test",
516
- "application": "000000000000000000000001"
517
- }
518
- ]
519
- }
520
- ```
521
- </details>
522
-
523
-
524
-
525
-
526
-
527
-
528
-
529
-
530
-
531
- ---
532
-
533
-
534
- ### getFaqCategoryBySlug
535
- Get the FAQ category
536
-
537
-
538
-
539
- ```javascript
540
- // Promise
541
- const promise = content.getFaqCategoryBySlug({ slug : value });
542
-
543
- // Async/Await
544
- const data = await content.getFaqCategoryBySlug({ slug : value });
545
- ```
546
-
547
-
548
-
549
-
550
-
551
- | Argument | Type | Required | Description |
552
- | --------- | ----- | -------- | ----------- |
553
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
554
-
555
-
556
-
557
- FAQs can be divided into categories. Use this API to get the category to which an FAQ belongs.
558
-
559
- *Returned Response:*
560
-
561
-
562
-
563
-
564
- [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
565
-
566
- Success. Returns a FAQ category with its slug. Check the example shown below or refer `GetFaqCategoryBySlugSchema` for more details.
567
-
568
-
569
-
570
-
571
- <details>
572
- <summary><i>&nbsp; Example:</i></summary>
573
-
574
- ```json
575
- {
576
- "category": {
577
- "index": 0,
578
- "children": [
579
- {
580
- "_id": "6026426ae507768b168dee4b",
581
- "question": "question 1",
582
- "answer": "answer 1",
583
- "slug": "question-1",
584
- "application": "000000000000000000000001"
585
- }
586
- ],
587
- "_id": "60263f80c83c1f89f2863a8a",
588
- "slug": "test",
589
- "title": "Test",
590
- "application": "000000000000000000000001"
591
- }
592
- }
593
- ```
594
- </details>
595
-
596
-
597
-
598
-
599
-
600
-
601
-
602
-
603
-
604
- ---
605
-
606
-
607
- ### getFaqs
608
- Get a list of FAQs
609
-
610
-
611
-
612
- ```javascript
613
- // Promise
614
- const promise = content.getFaqs();
615
-
616
- // Async/Await
617
- const data = await content.getFaqs();
618
- ```
619
-
620
-
621
-
622
-
623
-
624
-
625
- Use this API to get a list of frequently asked questions. Users will benefit from it when facing any issue with the website.
626
-
627
- *Returned Response:*
628
-
629
-
630
-
631
-
632
- [FaqResponseSchema](#FaqResponseSchema)
633
-
634
- Success. Returns a JSON object with question and answers. Check the example shown below or refer `FaqResponseSchema` for more details.
635
-
636
-
637
-
638
-
639
- <details>
640
- <summary><i>&nbsp; Examples:</i></summary>
641
-
642
-
643
- <details>
644
- <summary><i>&nbsp; default</i></summary>
645
-
646
- ```json
647
- {
648
- "value": {
649
- "faqs": [
650
- {
651
- "_id": "5eb2db750a8ebf497e315028",
652
- "question": "how to refer my friend",
653
- "answer": "1. Click on refer and earn image in fynd app\n2. Click on share the code\n3. Use any method for sharing\n4. Once the user activates the app with your code, both of you will get the refereal credits.",
654
- "slug": "how to refer",
655
- "application": "000000000000000000000001"
656
- }
657
- ]
658
- }
659
- }
660
- ```
661
- </details>
662
-
663
- </details>
664
-
665
-
666
-
667
-
668
-
669
-
670
-
671
-
672
-
673
- ---
674
-
675
-
676
- ### getFaqsByCategorySlug
677
- Get FAQs using the slug of FAQ category
678
-
679
-
680
-
681
- ```javascript
682
- // Promise
683
- const promise = content.getFaqsByCategorySlug({ slug : value });
684
-
685
- // Async/Await
686
- const data = await content.getFaqsByCategorySlug({ slug : value });
687
- ```
688
-
689
-
690
-
691
-
692
-
693
- | Argument | Type | Required | Description |
694
- | --------- | ----- | -------- | ----------- |
695
- | slug | string | yes | A short, human-readable, URL-friendly identifier of an FAQ category. You can get slug value from the endpoint /service/application/content/v1.0/faq/categories. |
696
-
697
-
698
-
699
- FAQs can be divided into categories. Use this API to get all the FAQs belonging to a category by using the category slug.
700
-
701
- *Returned Response:*
702
-
703
-
704
-
705
-
706
- [GetFaqSchema](#GetFaqSchema)
707
-
708
- Success. Returns a categorized list of question and answers using its slug. Check the example shown below or refer `GetFaqSchema` for more details.
709
-
710
-
711
-
712
-
713
- <details>
714
- <summary><i>&nbsp; Example:</i></summary>
715
-
716
- ```json
717
- {
718
- "faqs": [
719
- {
720
- "_id": "60265b64e507768b168dee4d",
721
- "question": "question 1",
722
- "answer": "answer 1",
723
- "slug": "question-1",
724
- "application": "000000000000000000000001"
725
- }
726
- ]
727
- }
728
- ```
729
- </details>
730
-
731
-
732
-
733
-
734
-
735
-
736
-
737
-
738
-
739
- ---
740
-
741
-
742
- ### getLandingPage
743
- Get the landing page
744
-
745
-
746
-
747
- ```javascript
748
- // Promise
749
- const promise = content.getLandingPage();
750
-
751
- // Async/Await
752
- const data = await content.getLandingPage();
753
- ```
754
-
755
-
756
-
757
-
758
-
759
-
760
- Landing page is the first page that a prospect lands upon while visiting a website. Use this API to fetch the details of a landing page.
761
-
762
- *Returned Response:*
763
-
764
-
765
-
766
-
767
- [LandingPageSchema](#LandingPageSchema)
768
-
769
- Success. Returns the landing page details. Check the example shown below or refer `LandingPageSchema` for more details.
770
-
771
-
772
-
773
-
774
- <details>
775
- <summary><i>&nbsp; Examples:</i></summary>
776
-
777
-
778
- <details>
779
- <summary><i>&nbsp; default</i></summary>
780
-
781
- ```json
782
- {
783
- "value": {
784
- "_id": "5eaa451a21a4dd75f0fd96c5",
785
- "application": "5d3ebd89f540e7506b8b3548",
786
- "_custom_json": null,
787
- "slug": "pnc-landing",
788
- "action": {
789
- "page": {
790
- "type": "home"
791
- },
792
- "popup": {},
793
- "type": "page"
794
- },
795
- "platform": [
796
- "web"
797
- ],
798
- "created_by": {
799
- "id": "000000000000000000000000"
800
- },
801
- "date_meta": {
802
- "created_on": "2020-04-30T03:25:14.549Z",
803
- "modified_on": "2020-04-30T03:25:14.549Z"
804
- },
805
- "archived": false
806
- }
807
- }
808
- ```
809
- </details>
810
-
811
- </details>
812
-
813
-
814
-
815
-
816
-
817
-
818
-
819
-
820
-
821
- ---
822
-
823
-
824
- ### getLegalInformation
825
- Get legal information
826
-
827
-
828
-
829
- ```javascript
830
- // Promise
831
- const promise = content.getLegalInformation();
832
-
833
- // Async/Await
834
- const data = await content.getLegalInformation();
835
- ```
836
-
837
-
838
-
839
-
840
-
841
-
842
- Use this API to get the legal information of an application, which includes Privacy Policy, Terms and Conditions, Shipping Policy and FAQs regarding the usage of the application.
843
-
844
- *Returned Response:*
845
-
846
-
847
-
848
-
849
- [ApplicationLegal](#ApplicationLegal)
850
-
851
- Success. Returns the T&C, Shipping Policy, Privacy Policy and Return Policy. Check the example shown below or refer `ApplicationLegal` for more details.
852
-
853
-
854
-
855
-
856
- <details>
857
- <summary><i>&nbsp; Examples:</i></summary>
858
-
859
-
860
- <details>
861
- <summary><i>&nbsp; Success</i></summary>
862
-
863
- ```json
864
- {
865
- "value": {
866
- "tnc": "**Terms and Conditions test**",
867
- "policy": "**Privacy policy test**",
868
- "shipping": "**Shipping term and conditions**",
869
- "returns": "**Terms & conditions for returns **",
870
- "_id": "5e8b2b96abe7dc94c02c9ac9",
871
- "application": "000000000000000000000001",
872
- "faq": [
873
- {
874
- "question": "New Question",
875
- "answer": "New Answer"
876
- },
877
- {
878
- "question": "New",
879
- "answer": "sdfghjhg"
880
- },
881
- {
882
- "question": "test",
883
- "answer": "test"
884
- },
885
- {
886
- "question": "New Test",
887
- "answer": "New Test answer"
888
- },
889
- {
890
- "question": "test",
891
- "answer": "test"
892
- }
893
- ],
894
- "created_at": "2020-04-06T13:16:06.818Z",
895
- "updated_at": "2020-07-16T09:47:40.751Z",
896
- "__v": 260
897
- }
898
- }
899
- ```
900
- </details>
901
-
902
- </details>
903
-
904
-
905
-
906
-
907
-
908
-
909
-
910
-
911
-
912
- ---
913
-
914
-
915
- ### getNavigations
916
- Get the navigation
917
-
918
-
919
-
920
- ```javascript
921
- // Promise
922
- const promise = content.getNavigations({ pageNo : value,
923
- pageSize : value });
924
-
925
- // Async/Await
926
- const data = await content.getNavigations({ pageNo : value,
927
- pageSize : value });
928
- ```
929
-
930
-
931
-
932
-
933
-
934
- | Argument | Type | Required | Description |
935
- | --------- | ----- | -------- | ----------- |
936
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
937
- | pageSize | number | no | The number of items to retrieve in each page. |
938
-
939
-
940
-
941
- Use this API to fetch the navigations details which includes the items of the navigation pane. It also shows the links and sub-navigations.
942
-
943
- *Returned Response:*
944
-
945
-
946
-
947
-
948
- [NavigationGetResponse](#NavigationGetResponse)
949
-
950
- Success. Returns a JSON object with navigation details. Check the example shown below or refer `NavigationGetResponse` for more details.
951
-
952
-
953
-
954
-
955
- <details>
956
- <summary><i>&nbsp; Examples:</i></summary>
957
-
958
-
959
- <details>
960
- <summary><i>&nbsp; default</i></summary>
961
-
962
- ```json
963
- {
964
- "value": {
965
- "items": [
966
- {
967
- "_id": "5ffbd9b90ac98678ae0458d7",
968
- "application": "000000000000000000000001",
969
- "_custom_json": null,
970
- "name": "temp",
971
- "slug": "temp",
972
- "platform": "web",
973
- "position": "top",
974
- "orientation": "landscape",
975
- "navigation": [
976
- {
977
- "display": "Home",
978
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/mystore-tab_y0dqzt.png",
979
- "sort_order": 1,
980
- "type": "",
981
- "action": {
982
- "page": {
983
- "url": "/",
984
- "type": "home"
985
- },
986
- "popup": {},
987
- "type": "page"
988
- },
989
- "active": true,
990
- "tags": {
991
- "type": "array",
992
- "items": {
993
- "type": "string"
994
- }
995
- },
996
- "acl": [
997
- "all"
998
- ],
999
- "_locale_language": {
1000
- "hi": {
1001
- "display": ""
1002
- },
1003
- "ar": {
1004
- "display": ""
1005
- },
1006
- "en_us": {
1007
- "display": ""
1008
- }
1009
- },
1010
- "sub_navigation": [
1011
- {
1012
- "display": "Brands",
1013
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1014
- "sort_order": 1,
1015
- "type": "",
1016
- "action": {
1017
- "page": {
1018
- "url": "/brands/",
1019
- "type": "brands"
1020
- },
1021
- "popup": {},
1022
- "type": "page"
1023
- },
1024
- "active": true,
1025
- "tags": null,
1026
- "acl": [
1027
- "all"
1028
- ],
1029
- "_locale_language": {
1030
- "hi": {
1031
- "display": ""
1032
- },
1033
- "ar": {
1034
- "display": ""
1035
- },
1036
- "en_us": {
1037
- "display": ""
1038
- }
1039
- }
1040
- }
1041
- ]
1042
- },
1043
- {
1044
- "display": "Collections",
1045
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/collections-tab_a0tg9c.png",
1046
- "sort_order": 2,
1047
- "type": "",
1048
- "action": {
1049
- "page": {
1050
- "url": "/collections/",
1051
- "type": "collections"
1052
- },
1053
- "popup": {},
1054
- "type": "page"
1055
- },
1056
- "active": true,
1057
- "tags": null,
1058
- "acl": [
1059
- "all"
1060
- ],
1061
- "_locale_language": {
1062
- "hi": {
1063
- "display": ""
1064
- },
1065
- "ar": {
1066
- "display": ""
1067
- },
1068
- "en_us": {
1069
- "display": ""
1070
- }
1071
- },
1072
- "sub_navigation": [
1073
- {
1074
- "display": "Categories",
1075
- "image": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148154/production/system/icons/categories-tab_ss8e0q.png",
1076
- "sort_order": 1,
1077
- "type": "",
1078
- "action": {
1079
- "page": {
1080
- "url": "/categories/",
1081
- "type": "categories"
1082
- },
1083
- "popup": {},
1084
- "type": "page"
1085
- },
1086
- "active": true,
1087
- "tags": null,
1088
- "acl": [
1089
- "all"
1090
- ],
1091
- "_locale_language": {
1092
- "hi": {
1093
- "display": ""
1094
- },
1095
- "ar": {
1096
- "display": ""
1097
- },
1098
- "en_us": {
1099
- "display": ""
1100
- }
1101
- }
1102
- }
1103
- ]
1104
- },
1105
- {
1106
- "display": "Primary Menu",
1107
- "image": "",
1108
- "sort_order": 3,
1109
- "type": "",
1110
- "action": {
1111
- "page": {
1112
- "type": "home"
1113
- },
1114
- "popup": {},
1115
- "type": "page"
1116
- },
1117
- "active": true,
1118
- "tags": null,
1119
- "acl": [
1120
- "all"
1121
- ],
1122
- "_locale_language": {
1123
- "hi": {
1124
- "display": ""
1125
- },
1126
- "ar": {
1127
- "display": ""
1128
- },
1129
- "en_us": {
1130
- "display": ""
1131
- }
1132
- }
1133
- }
1134
- ],
1135
- "created_by": {
1136
- "id": "000000000000000000000000"
1137
- },
1138
- "date_meta": {
1139
- "created_on": "2021-01-11T04:53:13.585Z",
1140
- "modified_on": "2021-01-14T10:24:34.485Z"
1141
- }
1142
- }
1143
- ],
1144
- "page": {
1145
- "type": "number",
1146
- "current": 1,
1147
- "size": 1,
1148
- "item_total": 2,
1149
- "has_next": true
1150
- }
1151
- }
1152
- }
1153
- ```
1154
- </details>
1155
-
1156
- </details>
1157
-
1158
-
1159
-
1160
-
1161
-
1162
-
1163
-
1164
-
1165
-
1166
- ---
1167
-
1168
-
1169
- ### getPage
1170
- Get a page
1171
-
1172
-
1173
-
1174
- ```javascript
1175
- // Promise
1176
- const promise = content.getPage({ slug : value,
1177
- rootId : value });
1178
-
1179
- // Async/Await
1180
- const data = await content.getPage({ slug : value,
1181
- rootId : value });
1182
- ```
1183
-
1184
-
1185
-
1186
-
1187
-
1188
- | Argument | Type | Required | Description |
1189
- | --------- | ----- | -------- | ----------- |
1190
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a page. You can get slug value from the endpoint /service/application/content/v2.0/pages/. |
1191
- | rootId | string | no | ID given to the HTML element |
1192
-
1193
-
1194
-
1195
- Use this API to get the details of a page using its slug. Details include the title, seo, publish status, feature image, tags, meta, etc.
1196
-
1197
- *Returned Response:*
1198
-
1199
-
1200
-
1201
-
1202
- [PageSchema](#PageSchema)
1203
-
1204
- Success. Returns a JSON object with page details. Check the example shown below or refer `CustomPageSchema` for more details.
1205
-
1206
-
1207
-
1208
-
1209
- <details>
1210
- <summary><i>&nbsp; Examples:</i></summary>
1211
-
1212
-
1213
- <details>
1214
- <summary><i>&nbsp; default</i></summary>
1215
-
1216
- ```json
1217
- {
1218
- "value": {
1219
- "date_meta": {
1220
- "created_on": "2021-03-16T08:24:19.197Z",
1221
- "modified_on": "2021-03-16T08:24:19.197Z"
1222
- },
1223
- "tags": [
1224
- "my first page"
1225
- ],
1226
- "published": true,
1227
- "component_ids": [],
1228
- "archived": false,
1229
- "_id": "60506dcad18cb33946026862",
1230
- "title": "my first page",
1231
- "slug": "1st_page",
1232
- "feature_image": {
1233
- "secure_url": "https://google.com/some-image"
1234
- },
1235
- "content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
1236
- "platform": "web",
1237
- "description": "hey this is my first page",
1238
- "visibility": {
1239
- "test": true
1240
- },
1241
- "_schedule": {
1242
- "start": "2021-04-23T23:50:00.000Z",
1243
- "next_schedule": [
1244
- {}
1245
- ]
1246
- },
1247
- "seo": {
1248
- "title": "my first page",
1249
- "description": "hey this is my first page",
1250
- "image": {
1251
- "url": ""
1252
- }
1253
- },
1254
- "type": "rawhtml",
1255
- "application": "000000000000000000000001",
1256
- "orientation": "portrait",
1257
- "page_meta": []
1258
- }
1259
- }
1260
- ```
1261
- </details>
1262
-
1263
- </details>
1264
-
1265
-
1266
-
1267
-
1268
-
1269
-
1270
-
1271
-
1272
-
1273
- ---
1274
-
1275
-
1276
- ### getPages
1277
- Get all pages
1278
-
1279
-
1280
-
1281
- ```javascript
1282
- // Promise
1283
- const promise = content.getPages({ pageNo : value,
1284
- pageSize : value });
1285
-
1286
- // Async/Await
1287
- const data = await content.getPages({ pageNo : value,
1288
- pageSize : value });
1289
- ```
1290
-
1291
-
1292
-
1293
-
1294
-
1295
- | Argument | Type | Required | Description |
1296
- | --------- | ----- | -------- | ----------- |
1297
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
1298
- | pageSize | number | no | The number of items to retrieve in each page. |
1299
-
1300
-
1301
-
1302
- Use this API to get a list of pages.
1303
-
1304
- *Returned Response:*
1305
-
1306
-
1307
-
1308
-
1309
- [PageGetResponse](#PageGetResponse)
1310
-
1311
- Success. Returns a list of pages along with their details. Check the example shown below or refer `PageGetStorefrontResponse` for more details.
1312
-
1313
-
1314
-
1315
-
1316
- <details>
1317
- <summary><i>&nbsp; Examples:</i></summary>
1318
-
1319
-
1320
- <details>
1321
- <summary><i>&nbsp; default</i></summary>
1322
-
1323
- ```json
1324
- {
1325
- "value": {
1326
- "items": [
1327
- {
1328
- "date_meta": {
1329
- "created_on": "2021-03-14T06:49:03.945Z",
1330
- "modified_on": "2021-03-14T06:49:03.945Z"
1331
- },
1332
- "tags": [
1333
- "my first page"
1334
- ],
1335
- "_id": "604db275b3ae202873964d94",
1336
- "content_path": "https://hdn-1.fynd.com/company/1526/applications/61012f6a9250ccd1b9ef8a1d/pages/content/page_slug.html",
1337
- "title": "test-page",
1338
- "slug": "test-page",
1339
- "published": true,
1340
- "_schedule": {
1341
- "next_schedule": [
1342
- {}
1343
- ],
1344
- "start": "2021-04-08T07:15:13.000Z",
1345
- "end": "2021-04-10T02:00:00.000Z"
1346
- },
1347
- "feature_image": {
1348
- "secure_url": "https://google.com/some-image"
1349
- },
1350
- "seo": {
1351
- "title": "my first page",
1352
- "description": "hey this is my first page",
1353
- "image": {
1354
- "url": ""
1355
- }
1356
- },
1357
- "application": "000000000000000000000001",
1358
- "author": {
1359
- "name": "Abhinav Maurya"
1360
- }
1361
- }
1362
- ],
1363
- "page": {
1364
- "type": "number",
1365
- "current": 1,
1366
- "size": 1,
1367
- "item_total": 2,
1368
- "has_next": true
1369
- }
1370
- }
1371
- }
1372
- ```
1373
- </details>
1374
-
1375
- </details>
1376
-
1377
-
1378
-
1379
-
1380
-
1381
-
1382
-
1383
-
1384
-
1385
- ---
1386
-
1387
-
1388
- ### getSEOConfiguration
1389
- Get the SEO of an application
1390
-
1391
-
1392
-
1393
- ```javascript
1394
- // Promise
1395
- const promise = content.getSEOConfiguration();
1396
-
1397
- // Async/Await
1398
- const data = await content.getSEOConfiguration();
1399
- ```
1400
-
1401
-
1402
-
1403
-
1404
-
1405
-
1406
- Use this API to get the SEO details of an application, which includes a robot.txt, meta-tags and sitemap.
1407
-
1408
- *Returned Response:*
1409
-
1410
-
1411
-
1412
-
1413
- [SeoComponent](#SeoComponent)
1414
-
1415
- Success. Returns a JSON object SEO details such as robots.txt, meta-tags, and sitemap. Check the example shown below or refer `SeoComponent` for more details.
1416
-
1417
-
1418
-
1419
-
1420
- <details>
1421
- <summary><i>&nbsp; Examples:</i></summary>
1422
-
1423
-
1424
- <details>
1425
- <summary><i>&nbsp; Success</i></summary>
1426
-
1427
- ```json
1428
- {
1429
- "value": {
1430
- "seo": {
1431
- "details": {
1432
- "title": "Zyosa Zyosa"
1433
- },
1434
- "robots_txt": "User-agent: * \nAllow: / \nsancisciasn xwsaixjowqnxwsiwjs",
1435
- "sitemap_enabled": false,
1436
- "cannonical_enabled": false,
1437
- "_id": "6009819ee463ad40de397eb2",
1438
- "app": "000000000000000000000001",
1439
- "created_at": "2021-01-21T13:29:02.543Z",
1440
- "updated_at": "2021-02-05T06:36:16.048Z",
1441
- "__v": 11,
1442
- "custom_meta_tags": [
1443
- {
1444
- "name": "test 0000",
1445
- "content": "<meta name=\"test\" content=\"0000 cn dcje dcj rejre cjrenurenc \">",
1446
- "_id": "6017c301bde3c21dbb13b284"
1447
- },
1448
- {
1449
- "name": "cwdcdc",
1450
- "content": "<meta content=\"wdcewdewc\">",
1451
- "_id": "6017c675bde3c22cfb13b290"
1452
- }
1453
- ]
1454
- }
1455
- }
1456
- }
1457
- ```
1458
- </details>
1459
-
1460
- </details>
1461
-
1462
-
1463
-
1464
-
1465
-
1466
-
1467
-
1468
-
1469
-
1470
- ---
1471
-
1472
-
1473
- ### getSlideshow
1474
- Get a slideshow
1475
-
1476
-
1477
-
1478
- ```javascript
1479
- // Promise
1480
- const promise = content.getSlideshow({ slug : value });
1481
-
1482
- // Async/Await
1483
- const data = await content.getSlideshow({ slug : value });
1484
- ```
1485
-
1486
-
1487
-
1488
-
1489
-
1490
- | Argument | Type | Required | Description |
1491
- | --------- | ----- | -------- | ----------- |
1492
- | slug | string | yes | A short, human-readable, URL-friendly identifier of a slideshow. You can get slug value from the endpoint /service/application/content/v1.0/slideshow/. |
1493
-
1494
-
1495
-
1496
- A slideshow is a group of images, videos or a combination of both that are shown on the website in the form of slides. Use this API to fetch a slideshow using its `slug`.
1497
-
1498
- *Returned Response:*
1499
-
1500
-
1501
-
1502
-
1503
- [SlideshowSchema](#SlideshowSchema)
1504
-
1505
- Success. Returns the details of how a slideshow is configured. Check the example shown below or refer `SlideshowSchema` for more details.
1506
-
1507
-
1508
-
1509
-
1510
- <details>
1511
- <summary><i>&nbsp; Examples:</i></summary>
1512
-
1513
-
1514
- <details>
1515
- <summary><i>&nbsp; default</i></summary>
1516
-
1517
- ```json
1518
- {
1519
- "value": {
1520
- "date_meta": {
1521
- "created_on": "2021-03-14T05:27:12.319Z",
1522
- "modified_on": "2021-03-14T05:27:12.319Z"
1523
- },
1524
- "archived": false,
1525
- "_id": "604d9eb975e9d136bb1b8b83",
1526
- "configuration": {
1527
- "start_on_launch": false,
1528
- "duration": 50,
1529
- "sleep_time": 100,
1530
- "slide_direction": "horizontal"
1531
- },
1532
- "slug": "ss-sfsd-updated",
1533
- "platform": "ios",
1534
- "media": [
1535
- {
1536
- "auto_decide_duration": false,
1537
- "type": "image",
1538
- "url": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1539
- "bg_color": "#ffffff",
1540
- "duration": 10,
1541
- "action": {
1542
- "type": ""
1543
- }
1544
- },
1545
- {
1546
- "auto_decide_duration": true,
1547
- "type": "youtube",
1548
- "url": "https://www.youtube.com/embed/9vJRopau0g0",
1549
- "bg_color": "#ffffff",
1550
- "duration": 909,
1551
- "action": {
1552
- "type": ""
1553
- }
1554
- }
1555
- ],
1556
- "application": "5cd3db5e9d692cfe5302a7bb",
1557
- "active": true
1558
- }
1559
- }
1560
- ```
1561
- </details>
1562
-
1563
- </details>
1564
-
1565
-
1566
-
1567
-
1568
-
1569
-
1570
-
1571
-
1572
-
1573
- ---
1574
-
1575
-
1576
- ### getSlideshows
1577
- Get the slideshows
1578
-
1579
-
1580
-
1581
- ```javascript
1582
- // Promise
1583
- const promise = content.getSlideshows({ pageNo : value,
1584
- pageSize : value });
1585
-
1586
- // Async/Await
1587
- const data = await content.getSlideshows({ pageNo : value,
1588
- pageSize : value });
1589
- ```
1590
-
1591
-
1592
-
1593
-
1594
-
1595
- | Argument | Type | Required | Description |
1596
- | --------- | ----- | -------- | ----------- |
1597
- | pageNo | number | no | The page number to navigate through the given set of results. Default value is 1. |
1598
- | pageSize | number | no | The number of items to retrieve in each page. |
1599
-
1600
-
1601
-
1602
- Use this API to get a list of slideshows along with their details.
1603
-
1604
- *Returned Response:*
1605
-
1606
-
1607
-
1608
-
1609
- [SlideshowGetResponse](#SlideshowGetResponse)
1610
-
1611
- Success. Check the example shown below or refer `SlideshowGetResponse` for more details.
1612
-
1613
-
1614
-
1615
-
1616
- <details>
1617
- <summary><i>&nbsp; Examples:</i></summary>
1618
-
1619
-
1620
- <details>
1621
- <summary><i>&nbsp; default</i></summary>
1622
-
1623
- ```json
1624
- {
1625
- "value": {
1626
- "items": [
1627
- {
1628
- "date_meta": {
1629
- "created_on": "2021-03-14T05:27:12.319Z",
1630
- "modified_on": "2021-03-14T05:27:12.319Z"
1631
- },
1632
- "archived": false,
1633
- "_id": "604d9eb975e9d136bb1b8b83",
1634
- "configuration": {
1635
- "start_on_launch": false,
1636
- "duration": 50,
1637
- "sleep_time": 100,
1638
- "slide_direction": "horizontal"
1639
- },
1640
- "slug": "ss-sfsd-updated",
1641
- "platform": "ios",
1642
- "media": [
1643
- {
1644
- "auto_decide_duration": false,
1645
- "type": "image",
1646
- "url": "https://res.cloudinary.com/dwzm9bysq/image/upload/v1567148153/production/system/icons/brands-tab_sfinpk.png",
1647
- "bg_color": "#ffffff",
1648
- "duration": 10,
1649
- "action": {
1650
- "type": ""
1651
- }
1652
- },
1653
- {
1654
- "auto_decide_duration": true,
1655
- "type": "youtube",
1656
- "url": "https://www.youtube.com/embed/9vJRopau0g0",
1657
- "bg_color": "#ffffff",
1658
- "duration": 909,
1659
- "action": {
1660
- "type": ""
1661
- }
1662
- }
1663
- ],
1664
- "application": "5cd3db5e9d692cfe5302a7bb",
1665
- "active": true,
1666
- "__v": 0
1667
- }
1668
- ],
1669
- "page": {
1670
- "type": "number",
1671
- "current": 1,
1672
- "size": 1,
1673
- "item_total": 2,
1674
- "has_next": true
1675
- }
1676
- }
1677
- }
1678
- ```
1679
- </details>
1680
-
1681
- </details>
1682
-
1683
-
1684
-
1685
-
1686
-
1687
-
1688
-
1689
-
1690
-
1691
- ---
1692
-
1693
-
1694
- ### getSupportInformation
1695
- Get the support information
1696
-
1697
-
1698
-
1699
- ```javascript
1700
- // Promise
1701
- const promise = content.getSupportInformation();
1702
-
1703
- // Async/Await
1704
- const data = await content.getSupportInformation();
1705
- ```
1706
-
1707
-
1708
-
1709
-
1710
-
1711
-
1712
- Use this API to get contact details for customer support including emails and phone numbers.
1713
-
1714
- *Returned Response:*
1715
-
1716
-
1717
-
1718
-
1719
- [Support](#Support)
1720
-
1721
- Success. Returns all support information including email and phone number. Check the example shown below or refer `Support` for more details.
1722
-
1723
-
1724
-
1725
-
1726
- <details>
1727
- <summary><i>&nbsp; Examples:</i></summary>
1728
-
1729
-
1730
- <details>
1731
- <summary><i>&nbsp; default</i></summary>
1732
-
1733
- ```json
1734
- {
1735
- "value": {
1736
- "_id": "5ea4980b87a7944094216193",
1737
- "config_type": "app",
1738
- "application": "000000000000000000000001",
1739
- "created_at": "2020-04-25T20:05:31.300Z",
1740
- "updated_at": "2020-12-04T10:48:12.194Z",
1741
- "contact": {
1742
- "phone": {
1743
- "active": true,
1744
- "phone": [
1745
- {
1746
- "key": "Jane Doe",
1747
- "code": "91",
1748
- "number": "9988776655"
1749
- }
1750
- ]
1751
- },
1752
- "email": {
1753
- "active": false,
1754
- "email": []
1755
- }
1756
- },
1757
- "created": true
1758
- }
1759
- }
1760
- ```
1761
- </details>
1762
-
1763
- </details>
1764
-
1765
-
1766
-
1767
-
1768
-
1769
-
1770
-
1771
-
1772
-
1773
- ---
1774
-
1775
-
1776
- ### getTags
1777
- Get the tags associated with an application
1778
-
1779
-
1780
-
1781
- ```javascript
1782
- // Promise
1783
- const promise = content.getTags();
1784
-
1785
- // Async/Await
1786
- const data = await content.getTags();
1787
- ```
1788
-
1789
-
1790
-
1791
-
1792
-
1793
-
1794
- Use this API to get all the CSS and JS injected in the application in the form of tags.
1795
-
1796
- *Returned Response:*
1797
-
1798
-
1799
-
1800
-
1801
- [TagsSchema](#TagsSchema)
1802
-
1803
- Success. Returns a JSON object containing all the tags injected in the application. Check the example shown below or refer `TagsSchema` for more details.
1804
-
1805
-
1806
-
1807
-
1808
- <details>
1809
- <summary><i>&nbsp; Example:</i></summary>
1810
-
1811
- ```json
1812
- {
1813
- "application": "000000000000000000000001",
1814
- "_id": "5f7c37b2dd0144bb3a353c5f",
1815
- "tags": [
1816
- {
1817
- "name": "Tapfiliate JS",
1818
- "sub_type": "external",
1819
- "_id": "5f7c37b2dd0144f1f8353c60",
1820
- "type": "js",
1821
- "url": "https://script.tapfiliate.com/tapfiliate.js",
1822
- "position": "body-bottom",
1823
- "attributes": {
1824
- "async": true
1825
- }
1826
- }
1827
- ]
1828
- }
1829
- ```
1830
- </details>
1831
-
1832
-
1833
-
1834
-
1835
-
1836
-
1837
-
1838
-
1839
-
1840
- ---
1841
-
1842
-
1843
-
1844
- ### Schemas
1845
-
1846
-
1847
- #### [Action](#Action)
1848
-
1849
- | Properties | Type | Nullable | Description |
1850
- | ---------- | ---- | -------- | ----------- || page | [ActionPage](#ActionPage) | no | || popup | [ActionPage](#ActionPage) | no | || type | string | no | |
1851
-
1852
- ---
1853
-
1854
- #### [ActionPage](#ActionPage)
1855
-
1856
- | Properties | Type | Nullable | Description |
1857
- | ---------- | ---- | -------- | ----------- || params | [String: [string]] | no | || query | [String: [string]] | no | || type | string | no | || url | string | no | |
1858
-
1859
- ---
1860
-
1861
- #### [AdminAnnouncementSchema](#AdminAnnouncementSchema)
1862
-
1863
- | Properties | Type | Nullable | Description |
1864
- | ---------- | ---- | -------- | ----------- || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || announcement | string | no | || app | string | no | || author | [AnnouncementAuthorSchema](#AnnouncementAuthorSchema) | no | || created_at | string | no | || editor_meta | [EditorMeta](#EditorMeta) | no | || modified_at | string | no | || pages | [[AnnouncementPageSchema](#AnnouncementPageSchema)] | no | || platforms | [string] | no | || title | string | no | |
1865
-
1866
- ---
1867
-
1868
- #### [AnnouncementAuthorSchema](#AnnouncementAuthorSchema)
1869
-
1870
- | Properties | Type | Nullable | Description |
1871
- | ---------- | ---- | -------- | ----------- || created_by | string | no | || modified_by | string | no | |
1872
-
1873
- ---
1874
-
1875
- #### [AnnouncementPageSchema](#AnnouncementPageSchema)
1876
-
1877
- | Properties | Type | Nullable | Description |
1878
- | ---------- | ---- | -------- | ----------- || page_slug | string | no | || type | string | no | |
1879
-
1880
- ---
1881
-
1882
- #### [AnnouncementSchema](#AnnouncementSchema)
1883
-
1884
- | Properties | Type | Nullable | Description |
1885
- | ---------- | ---- | -------- | ----------- || announcement | string | no | || schedule | [ScheduleStartSchema](#ScheduleStartSchema) | no | |
1886
-
1887
- ---
1888
-
1889
- #### [AnnouncementsResponseSchema](#AnnouncementsResponseSchema)
1890
-
1891
- | Properties | Type | Nullable | Description |
1892
- | ---------- | ---- | -------- | ----------- || announcements | [String: [[AnnouncementSchema](#AnnouncementSchema)]] | no | || refresh_pages | [string] | no | || refresh_rate | number | no | |
1893
-
1894
- ---
1895
-
1896
- #### [ApplicationLegal](#ApplicationLegal)
1897
-
1898
- | Properties | Type | Nullable | Description |
1899
- | ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || created_at | string | no | || faq | [[ApplicationLegalFAQ](#ApplicationLegalFAQ)] | no | || policy | string | no | || returns | string | no | || shipping | string | no | || tnc | string | no | || updated_at | string | no | |
1900
-
1901
- ---
1902
-
1903
- #### [ApplicationLegalFAQ](#ApplicationLegalFAQ)
1904
-
1905
- | Properties | Type | Nullable | Description |
1906
- | ---------- | ---- | -------- | ----------- || answer | string | no | || question | string | no | |
1907
-
1908
- ---
1909
-
1910
- #### [Asset](#Asset)
1911
-
1912
- | Properties | Type | Nullable | Description |
1913
- | ---------- | ---- | -------- | ----------- || aspect_ratio | string | no | || id | string | no | || secure_url | string | no | |
1914
-
1915
- ---
1916
-
1917
- #### [Author](#Author)
1918
-
1919
- | Properties | Type | Nullable | Description |
1920
- | ---------- | ---- | -------- | ----------- || designation | string | no | || id | string | no | || name | string | no | |
1921
-
1922
- ---
1923
-
1924
- #### [BlogGetResponse](#BlogGetResponse)
1925
-
1926
- | Properties | Type | Nullable | Description |
1927
- | ---------- | ---- | -------- | ----------- || items | [[BlogSchema](#BlogSchema)] | no | || page | [Page](#Page) | no | |
1928
-
1929
- ---
1930
-
1931
- #### [BlogRequest](#BlogRequest)
1932
-
1933
- | Properties | Type | Nullable | Description |
1934
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || author | [Author](#Author) | no | || content | [[ResourceContent](#ResourceContent)] | no | || feature_image | [Asset](#Asset) | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
1935
-
1936
- ---
1937
-
1938
- #### [BlogSchema](#BlogSchema)
1939
-
1940
- | Properties | Type | Nullable | Description |
1941
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || archived | boolean | no | || author | [Author](#Author) | no | || content | [[ResourceContent](#ResourceContent)] | no | || date_meta | [DateMeta](#DateMeta) | no | || feature_image | [Asset](#Asset) | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
1942
-
1943
- ---
1944
-
1945
- #### [CategoryRequestSchema](#CategoryRequestSchema)
1946
-
1947
- | Properties | Type | Nullable | Description |
1948
- | ---------- | ---- | -------- | ----------- || slug | string | no | || title | string | no | |
1949
-
1950
- ---
1951
-
1952
- #### [CategorySchema](#CategorySchema)
1953
-
1954
- | Properties | Type | Nullable | Description |
1955
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || application | string | no | || children | [string] | no | || description | string | no | || icon_url | string | no | || index | number | no | || slug | string | no | || title | string | no | |
1956
-
1957
- ---
1958
-
1959
- #### [ChildrenSchema](#ChildrenSchema)
1960
-
1961
- | Properties | Type | Nullable | Description |
1962
- | ---------- | ---- | -------- | ----------- || _id | string | no | || answer | string | no | || application | string | no | || question | string | no | || slug | string | no | |
1963
-
1964
- ---
1965
-
1966
- #### [CommonError](#CommonError)
1967
-
1968
- | Properties | Type | Nullable | Description |
1969
- | ---------- | ---- | -------- | ----------- || message | string | no | |
1970
-
1971
- ---
1972
-
1973
- #### [ConfigurationSchema](#ConfigurationSchema)
1974
-
1975
- | Properties | Type | Nullable | Description |
1976
- | ---------- | ---- | -------- | ----------- || duration | number | no | || sleep_time | number | no | || slide_direction | string | no | || start_on_launch | boolean | no | |
1977
-
1978
- ---
1979
-
1980
- #### [ContactSchema](#ContactSchema)
1981
-
1982
- | Properties | Type | Nullable | Description |
1983
- | ---------- | ---- | -------- | ----------- || email | [EmailSchema](#EmailSchema) | no | || phone | [PhoneSchema](#PhoneSchema) | no | |
1984
-
1985
- ---
1986
-
1987
- #### [ContentAPIError](#ContentAPIError)
1988
-
1989
- | Properties | Type | Nullable | Description |
1990
- | ---------- | ---- | -------- | ----------- || code | string | no | || exception | string | no | || info | string | no | || message | string | no | || meta | string | no | || request_id | string | no | || stack_trace | string | no | || status | number | no | |
1991
-
1992
- ---
1993
-
1994
- #### [ContentSchema](#ContentSchema)
1995
-
1996
- | Properties | Type | Nullable | Description |
1997
- | ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
1998
-
1999
- ---
2000
-
2001
- #### [CreateAnnouncementSchema](#CreateAnnouncementSchema)
2002
-
2003
- | Properties | Type | Nullable | Description |
2004
- | ---------- | ---- | -------- | ----------- || data | [AdminAnnouncementSchema](#AdminAnnouncementSchema) | no | || message | string | no | |
2005
-
2006
- ---
2007
-
2008
- #### [CreatedBySchema](#CreatedBySchema)
2009
-
2010
- | Properties | Type | Nullable | Description |
2011
- | ---------- | ---- | -------- | ----------- || id | string | no | |
2012
-
2013
- ---
2014
-
2015
- #### [CreateFaqCategoryRequestSchema](#CreateFaqCategoryRequestSchema)
2016
-
2017
- | Properties | Type | Nullable | Description |
2018
- | ---------- | ---- | -------- | ----------- || category | [CategoryRequestSchema](#CategoryRequestSchema) | no | |
2019
-
2020
- ---
2021
-
2022
- #### [CreateFaqCategorySchema](#CreateFaqCategorySchema)
2023
-
2024
- | Properties | Type | Nullable | Description |
2025
- | ---------- | ---- | -------- | ----------- || category | [CategorySchema](#CategorySchema) | no | |
2026
-
2027
- ---
2028
-
2029
- #### [CreateFaqResponseSchema](#CreateFaqResponseSchema)
2030
-
2031
- | Properties | Type | Nullable | Description |
2032
- | ---------- | ---- | -------- | ----------- || faq | [FaqSchema](#FaqSchema) | no | |
2033
-
2034
- ---
2035
-
2036
- #### [CreateFaqSchema](#CreateFaqSchema)
2037
-
2038
- | Properties | Type | Nullable | Description |
2039
- | ---------- | ---- | -------- | ----------- || faq | [FAQ](#FAQ) | no | |
2040
-
2041
- ---
2042
-
2043
- #### [CreateTagRequestSchema](#CreateTagRequestSchema)
2044
-
2045
- | Properties | Type | Nullable | Description |
2046
- | ---------- | ---- | -------- | ----------- || tags | [[CreateTagSchema](#CreateTagSchema)] | no | |
2047
-
2048
- ---
2049
-
2050
- #### [CreateTagSchema](#CreateTagSchema)
2051
-
2052
- | Properties | Type | Nullable | Description |
2053
- | ---------- | ---- | -------- | ----------- || _id | string | no | || attributes | string | no | || content | string | no | || name | string | no | || pages | [string] | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
2054
-
2055
- ---
2056
-
2057
- #### [CronSchedule](#CronSchedule)
2058
-
2059
- | Properties | Type | Nullable | Description |
2060
- | ---------- | ---- | -------- | ----------- || cron | string | no | || duration | number | no | || end | string | no | || start | string | no | |
2061
-
2062
- ---
2063
-
2064
- #### [CustomMetaTag](#CustomMetaTag)
2065
-
2066
- | Properties | Type | Nullable | Description |
2067
- | ---------- | ---- | -------- | ----------- || _id | string | no | || content | string | no | || name | string | no | |
2068
-
2069
- ---
2070
-
2071
- #### [CustomPage](#CustomPage)
2072
-
2073
- | Properties | Type | Nullable | Description |
2074
- | ---------- | ---- | -------- | ----------- || data | [CustomPageSchema](#CustomPageSchema) | no | |
2075
-
2076
- ---
2077
-
2078
- #### [CustomPageSchema](#CustomPageSchema)
2079
-
2080
- | Properties | Type | Nullable | Description |
2081
- | ---------- | ---- | -------- | ----------- || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || application | string | no | || content | [string] | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || description | string | no | || orientation | string | no | || platform | string | no | || published | boolean | no | || slug | string | no | || tags | [string] | no | || title | string | no | || type | string | no | |
2082
-
2083
- ---
2084
-
2085
- #### [DataLoaderResetResponseSchema](#DataLoaderResetResponseSchema)
2086
-
2087
- | Properties | Type | Nullable | Description |
2088
- | ---------- | ---- | -------- | ----------- || reset | string | no | |
2089
-
2090
- ---
2091
-
2092
- #### [DataLoaderResponseSchema](#DataLoaderResponseSchema)
2093
-
2094
- | Properties | Type | Nullable | Description |
2095
- | ---------- | ---- | -------- | ----------- || __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | || _id | string | no | || application | string | no | || company | string | no | || content | string | no | || name | string | no | || operation_id | string | no | || service | string | no | || type | string | no | || url | string | no | |
2096
-
2097
- ---
2098
-
2099
- #### [DataLoaderSchema](#DataLoaderSchema)
2100
-
2101
- | Properties | Type | Nullable | Description |
2102
- | ---------- | ---- | -------- | ----------- || __source | [DataLoaderSourceSchema](#DataLoaderSourceSchema) | no | || _id | string | no | || content | string | no | || name | string | no | || operation_id | string | no | || service | string | no | || type | string | no | || url | string | no | |
2103
-
2104
- ---
2105
-
2106
- #### [DataLoaderSourceSchema](#DataLoaderSourceSchema)
2107
-
2108
- | Properties | Type | Nullable | Description |
2109
- | ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
2110
-
2111
- ---
2112
-
2113
- #### [DataLoadersSchema](#DataLoadersSchema)
2114
-
2115
- | Properties | Type | Nullable | Description |
2116
- | ---------- | ---- | -------- | ----------- || items | [[DataLoaderSchema](#DataLoaderSchema)] | no | |
2117
-
2118
- ---
2119
-
2120
- #### [DateMeta](#DateMeta)
2121
-
2122
- | Properties | Type | Nullable | Description |
2123
- | ---------- | ---- | -------- | ----------- || created_on | string | no | || modified_on | string | no | |
2124
-
2125
- ---
2126
-
2127
- #### [DefaultNavigationResponse](#DefaultNavigationResponse)
2128
-
2129
- | Properties | Type | Nullable | Description |
2130
- | ---------- | ---- | -------- | ----------- || items | [[NavigationSchema](#NavigationSchema)] | no | |
2131
-
2132
- ---
2133
-
2134
- #### [Detail](#Detail)
2135
-
2136
- | Properties | Type | Nullable | Description |
2137
- | ---------- | ---- | -------- | ----------- || description | string | no | || title | string | no | |
2138
-
2139
- ---
2140
-
2141
- #### [EditorMeta](#EditorMeta)
2142
-
2143
- | Properties | Type | Nullable | Description |
2144
- | ---------- | ---- | -------- | ----------- || background_color | string | no | || content | string | no | || content_type | string | no | || foreground_color | string | no | |
2145
-
2146
- ---
2147
-
2148
- #### [EmailProperties](#EmailProperties)
2149
-
2150
- | Properties | Type | Nullable | Description |
2151
- | ---------- | ---- | -------- | ----------- || key | string | no | || value | string | no | |
2152
-
2153
- ---
2154
-
2155
- #### [EmailSchema](#EmailSchema)
2156
-
2157
- | Properties | Type | Nullable | Description |
2158
- | ---------- | ---- | -------- | ----------- || active | boolean | no | || email | [[EmailProperties](#EmailProperties)] | no | |
2159
-
2160
- ---
2161
-
2162
- #### [FAQ](#FAQ)
2163
-
2164
- | Properties | Type | Nullable | Description |
2165
- | ---------- | ---- | -------- | ----------- || answer | string | no | || question | string | no | || slug | string | no | |
2166
-
2167
- ---
2168
-
2169
- #### [FAQCategorySchema](#FAQCategorySchema)
2170
-
2171
- | Properties | Type | Nullable | Description |
2172
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || application | string | no | || children | [[ChildrenSchema](#ChildrenSchema)] | no | || description | string | no | || icon_url | string | no | || index | number | no | || slug | string | no | || title | string | no | |
2173
-
2174
- ---
2175
-
2176
- #### [FaqResponseSchema](#FaqResponseSchema)
2177
-
2178
- | Properties | Type | Nullable | Description |
2179
- | ---------- | ---- | -------- | ----------- || faqs | [[FaqSchema](#FaqSchema)] | no | |
2180
-
2181
- ---
2182
-
2183
- #### [FaqSchema](#FaqSchema)
2184
-
2185
- | Properties | Type | Nullable | Description |
2186
- | ---------- | ---- | -------- | ----------- || _id | string | no | || answer | string | no | || application | string | no | || question | string | no | || slug | string | no | || tags | [string] | no | |
2187
-
2188
- ---
2189
-
2190
- #### [FeatureImage](#FeatureImage)
2191
-
2192
- | Properties | Type | Nullable | Description |
2193
- | ---------- | ---- | -------- | ----------- || secure_url | string | no | |
2194
-
2195
- ---
2196
-
2197
- #### [GetAnnouncementListSchema](#GetAnnouncementListSchema)
2198
-
2199
- | Properties | Type | Nullable | Description |
2200
- | ---------- | ---- | -------- | ----------- || items | [[AdminAnnouncementSchema](#AdminAnnouncementSchema)] | no | || page | [Page](#Page) | no | |
2201
-
2202
- ---
2203
-
2204
- #### [GetFaqCategoriesSchema](#GetFaqCategoriesSchema)
2205
-
2206
- | Properties | Type | Nullable | Description |
2207
- | ---------- | ---- | -------- | ----------- || categories | [[CategorySchema](#CategorySchema)] | no | |
2208
-
2209
- ---
2210
-
2211
- #### [GetFaqCategoryBySlugSchema](#GetFaqCategoryBySlugSchema)
2212
-
2213
- | Properties | Type | Nullable | Description |
2214
- | ---------- | ---- | -------- | ----------- || category | [FAQCategorySchema](#FAQCategorySchema) | no | |
2215
-
2216
- ---
2217
-
2218
- #### [GetFaqSchema](#GetFaqSchema)
2219
-
2220
- | Properties | Type | Nullable | Description |
2221
- | ---------- | ---- | -------- | ----------- || faqs | [[FaqSchema](#FaqSchema)] | no | |
2222
-
2223
- ---
2224
-
2225
- #### [HandpickedTagSchema](#HandpickedTagSchema)
2226
-
2227
- | Properties | Type | Nullable | Description |
2228
- | ---------- | ---- | -------- | ----------- || attributes | string | no | || content | string | no | || name | string | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
2229
-
2230
- ---
2231
-
2232
- #### [LandingPage](#LandingPage)
2233
-
2234
- | Properties | Type | Nullable | Description |
2235
- | ---------- | ---- | -------- | ----------- || data | [LandingPageSchema](#LandingPageSchema) | no | || success | boolean | no | |
2236
-
2237
- ---
2238
-
2239
- #### [LandingPageGetResponse](#LandingPageGetResponse)
2240
-
2241
- | Properties | Type | Nullable | Description |
2242
- | ---------- | ---- | -------- | ----------- || items | [[LandingPageSchema](#LandingPageSchema)] | no | || page | [Page](#Page) | no | |
2243
-
2244
- ---
2245
-
2246
- #### [LandingPageSchema](#LandingPageSchema)
2247
-
2248
- | Properties | Type | Nullable | Description |
2249
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || action | [Action](#Action) | no | || application | string | no | || archived | boolean | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || platform | [string] | no | || slug | string | no | |
2250
-
2251
- ---
2252
-
2253
- #### [Language](#Language)
2254
-
2255
- | Properties | Type | Nullable | Description |
2256
- | ---------- | ---- | -------- | ----------- || display | string | no | |
2257
-
2258
- ---
2259
-
2260
- #### [LocaleLanguage](#LocaleLanguage)
2261
-
2262
- | Properties | Type | Nullable | Description |
2263
- | ---------- | ---- | -------- | ----------- || ar | [Language](#Language) | no | || en_us | [Language](#Language) | no | || hi | [Language](#Language) | no | |
2264
-
2265
- ---
2266
-
2267
- #### [Navigation](#Navigation)
2268
-
2269
- | Properties | Type | Nullable | Description |
2270
- | ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || name | string | no | || navigation | [NavigationReference](#NavigationReference) | no | || orientation | string | no | || platform | string | no | || position | string | no | || slug | string | no | |
2271
-
2272
- ---
2273
-
2274
- #### [NavigationGetResponse](#NavigationGetResponse)
2275
-
2276
- | Properties | Type | Nullable | Description |
2277
- | ---------- | ---- | -------- | ----------- || items | [[NavigationSchema](#NavigationSchema)] | no | || page | [Page](#Page) | no | |
2278
-
2279
- ---
2280
-
2281
- #### [NavigationReference](#NavigationReference)
2282
-
2283
- | Properties | Type | Nullable | Description |
2284
- | ---------- | ---- | -------- | ----------- || _locale_language | [LocaleLanguage](#LocaleLanguage) | no | || acl | [string] | no | || action | [Action](#Action) | no | || active | boolean | no | || display | string | no | || image | string | no | || sort_order | number | no | || sub_navigation | [[NavigationReference](#NavigationReference)] | no | || tags | [string] | no | || type | string | no | |
2285
-
2286
- ---
2287
-
2288
- #### [NavigationRequest](#NavigationRequest)
2289
-
2290
- | Properties | Type | Nullable | Description |
2291
- | ---------- | ---- | -------- | ----------- || name | string | no | || navigation | [[NavigationReference](#NavigationReference)] | no | || orientation | [Orientation](#Orientation) | no | || platform | [string] | no | || slug | string | no | |
2292
-
2293
- ---
2294
-
2295
- #### [NavigationSchema](#NavigationSchema)
2296
-
2297
- | Properties | Type | Nullable | Description |
2298
- | ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || archived | boolean | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || name | string | no | || navigation | [[NavigationReference](#NavigationReference)] | no | || orientation | [Orientation](#Orientation) | no | || platform | [string] | no | || slug | string | no | || version | number | no | |
2299
-
2300
- ---
2301
-
2302
- #### [NextSchedule](#NextSchedule)
2303
-
2304
- | Properties | Type | Nullable | Description |
2305
- | ---------- | ---- | -------- | ----------- || end | string | no | || start | string | no | |
2306
-
2307
- ---
2308
-
2309
- #### [Orientation](#Orientation)
2310
-
2311
- | Properties | Type | Nullable | Description |
2312
- | ---------- | ---- | -------- | ----------- || landscape | [string] | no | || portrait | [string] | no | |
2313
-
2314
- ---
2315
-
2316
- #### [Page](#Page)
2317
-
2318
- | Properties | Type | Nullable | Description |
2319
- | ---------- | ---- | -------- | ----------- || current | number | no | || has_next | boolean | no | || has_previous | boolean | no | || item_total | number | no | || next_id | string | no | || size | number | no | || type | string | yes | |
2320
-
2321
- ---
2322
-
2323
- #### [PageContent](#PageContent)
2324
-
2325
- | Properties | Type | Nullable | Description |
2326
- | ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
2327
-
2328
- ---
2329
-
2330
- #### [PageGetResponse](#PageGetResponse)
2331
-
2332
- | Properties | Type | Nullable | Description |
2333
- | ---------- | ---- | -------- | ----------- || items | [[PageSchema](#PageSchema)] | no | || page | [Page](#Page) | no | |
2334
-
2335
- ---
2336
-
2337
- #### [PageMeta](#PageMeta)
2338
-
2339
- | Properties | Type | Nullable | Description |
2340
- | ---------- | ---- | -------- | ----------- || key | string | no | || value | string | no | |
2341
-
2342
- ---
2343
-
2344
- #### [PageMetaSchema](#PageMetaSchema)
2345
-
2346
- | Properties | Type | Nullable | Description |
2347
- | ---------- | ---- | -------- | ----------- || application_id | string | no | || custom_pages | [[PageSchema](#PageSchema)] | no | || system_pages | [[NavigationSchema](#NavigationSchema)] | no | |
2348
-
2349
- ---
2350
-
2351
- #### [PagePublishRequest](#PagePublishRequest)
2352
-
2353
- | Properties | Type | Nullable | Description |
2354
- | ---------- | ---- | -------- | ----------- || publish | boolean | no | |
2355
-
2356
- ---
2357
-
2358
- #### [PageRequest](#PageRequest)
2359
-
2360
- | Properties | Type | Nullable | Description |
2361
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _schedule | [CronSchedule](#CronSchedule) | no | || application | string | no | || author | [Author](#Author) | no | || content | [string] | no | || feature_image | [Asset](#Asset) | no | || orientation | string | no | || published | boolean | no | || reading_time | string | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | |
2362
-
2363
- ---
2364
-
2365
- #### [PageSchema](#PageSchema)
2366
-
2367
- | Properties | Type | Nullable | Description |
2368
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || _schedule | [ScheduleSchema](#ScheduleSchema) | no | || application | string | no | || archived | boolean | no | || component_ids | [string] | no | || content | [string] | no | || content_path | string | no | || created_by | [CreatedBySchema](#CreatedBySchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || description | string | no | || feature_image | [Asset](#Asset) | no | || orientation | string | no | || page_meta | [string] | no | || platform | string | no | || published | boolean | no | || seo | [SEO](#SEO) | no | || slug | string | no | || tags | [string] | no | || title | string | no | || type | string | no | || visibility | string | no | |
2369
-
2370
- ---
2371
-
2372
- #### [PageSpec](#PageSpec)
2373
-
2374
- | Properties | Type | Nullable | Description |
2375
- | ---------- | ---- | -------- | ----------- || specifications | [[PageSpecItem](#PageSpecItem)] | no | |
2376
-
2377
- ---
2378
-
2379
- #### [PageSpecItem](#PageSpecItem)
2380
-
2381
- | Properties | Type | Nullable | Description |
2382
- | ---------- | ---- | -------- | ----------- || display_name | string | no | || page_type | string | no | || params | [[PageSpecParam](#PageSpecParam)] | no | || query | [[PageSpecParam](#PageSpecParam)] | no | |
2383
-
2384
- ---
2385
-
2386
- #### [PageSpecParam](#PageSpecParam)
2387
-
2388
- | Properties | Type | Nullable | Description |
2389
- | ---------- | ---- | -------- | ----------- || key | string | no | || required | boolean | no | |
2390
-
2391
- ---
2392
-
2393
- #### [PathMappingSchema](#PathMappingSchema)
2394
-
2395
- | Properties | Type | Nullable | Description |
2396
- | ---------- | ---- | -------- | ----------- || __source | [PathSourceSchema](#PathSourceSchema) | no | || _id | string | no | || application | string | no | || created_at | string | no | || redirect_from | string | no | || redirect_to | string | no | || updated_at | string | no | |
2397
-
2398
- ---
2399
-
2400
- #### [PathSourceSchema](#PathSourceSchema)
2401
-
2402
- | Properties | Type | Nullable | Description |
2403
- | ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
2404
-
2405
- ---
2406
-
2407
- #### [PhoneProperties](#PhoneProperties)
2408
-
2409
- | Properties | Type | Nullable | Description |
2410
- | ---------- | ---- | -------- | ----------- || code | string | no | || key | string | no | || number | string | no | |
2411
-
2412
- ---
2413
-
2414
- #### [PhoneSchema](#PhoneSchema)
2415
-
2416
- | Properties | Type | Nullable | Description |
2417
- | ---------- | ---- | -------- | ----------- || active | boolean | no | || phone | [[PhoneProperties](#PhoneProperties)] | no | |
2418
-
2419
- ---
2420
-
2421
- #### [RemoveHandpickedSchema](#RemoveHandpickedSchema)
2422
-
2423
- | Properties | Type | Nullable | Description |
2424
- | ---------- | ---- | -------- | ----------- || tags | [string] | no | |
2425
-
2426
- ---
2427
-
2428
- #### [ResourceContent](#ResourceContent)
2429
-
2430
- | Properties | Type | Nullable | Description |
2431
- | ---------- | ---- | -------- | ----------- || type | string | no | || value | string | no | |
2432
-
2433
- ---
2434
-
2435
- #### [ScheduleSchema](#ScheduleSchema)
2436
-
2437
- | Properties | Type | Nullable | Description |
2438
- | ---------- | ---- | -------- | ----------- || cron | string | no | || duration | number | no | || end | string | no | || next_schedule | [[NextSchedule](#NextSchedule)] | no | || start | string | no | |
2439
-
2440
- ---
2441
-
2442
- #### [ScheduleStartSchema](#ScheduleStartSchema)
2443
-
2444
- | Properties | Type | Nullable | Description |
2445
- | ---------- | ---- | -------- | ----------- || end | string | no | || start | string | no | |
2446
-
2447
- ---
2448
-
2449
- #### [SEO](#SEO)
2450
-
2451
- | Properties | Type | Nullable | Description |
2452
- | ---------- | ---- | -------- | ----------- || description | string | no | || image | [SEOImage](#SEOImage) | no | || title | string | no | |
2453
-
2454
- ---
2455
-
2456
- #### [SeoComponent](#SeoComponent)
2457
-
2458
- | Properties | Type | Nullable | Description |
2459
- | ---------- | ---- | -------- | ----------- || seo | [SeoSchema](#SeoSchema) | no | |
2460
-
2461
- ---
2462
-
2463
- #### [SEOImage](#SEOImage)
2464
-
2465
- | Properties | Type | Nullable | Description |
2466
- | ---------- | ---- | -------- | ----------- || url | string | no | |
2467
-
2468
- ---
2469
-
2470
- #### [SeoSchema](#SeoSchema)
2471
-
2472
- | Properties | Type | Nullable | Description |
2473
- | ---------- | ---- | -------- | ----------- || _id | string | no | || app | string | no | || cannonical_enabled | boolean | no | || created_at | string | no | || custom_meta_tags | [[CustomMetaTag](#CustomMetaTag)] | no | || details | [Detail](#Detail) | no | || robots_txt | string | no | || sitemap_enabled | boolean | no | || updated_at | string | no | |
2474
-
2475
- ---
2476
-
2477
- #### [Slideshow](#Slideshow)
2478
-
2479
- | Properties | Type | Nullable | Description |
2480
- | ---------- | ---- | -------- | ----------- || data | [SlideshowSchema](#SlideshowSchema) | no | || success | boolean | no | |
2481
-
2482
- ---
2483
-
2484
- #### [SlideshowGetResponse](#SlideshowGetResponse)
2485
-
2486
- | Properties | Type | Nullable | Description |
2487
- | ---------- | ---- | -------- | ----------- || items | [[SlideshowSchema](#SlideshowSchema)] | no | || page | [Page](#Page) | no | |
2488
-
2489
- ---
2490
-
2491
- #### [SlideshowMedia](#SlideshowMedia)
2492
-
2493
- | Properties | Type | Nullable | Description |
2494
- | ---------- | ---- | -------- | ----------- || action | [Action](#Action) | no | || auto_decide_duration | boolean | no | || bg_color | string | no | || duration | number | no | || type | string | no | || url | string | no | |
2495
-
2496
- ---
2497
-
2498
- #### [SlideshowRequest](#SlideshowRequest)
2499
-
2500
- | Properties | Type | Nullable | Description |
2501
- | ---------- | ---- | -------- | ----------- || active | boolean | no | || configuration | [ConfigurationSchema](#ConfigurationSchema) | no | || media | [SlideshowMedia](#SlideshowMedia) | no | || platform | string | no | || slug | string | no | |
2502
-
2503
- ---
2504
-
2505
- #### [SlideshowSchema](#SlideshowSchema)
2506
-
2507
- | Properties | Type | Nullable | Description |
2508
- | ---------- | ---- | -------- | ----------- || _custom_json | string | no | || _id | string | no | || active | boolean | no | || application | string | no | || archived | boolean | no | || configuration | [ConfigurationSchema](#ConfigurationSchema) | no | || date_meta | [DateMeta](#DateMeta) | no | || media | [[SlideshowMedia](#SlideshowMedia)] | no | || platform | string | no | || slug | string | no | |
2509
-
2510
- ---
2511
-
2512
- #### [Support](#Support)
2513
-
2514
- | Properties | Type | Nullable | Description |
2515
- | ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || config_type | string | no | || contact | [ContactSchema](#ContactSchema) | no | || created | boolean | no | || created_at | string | no | || updated_at | string | no | |
2516
-
2517
- ---
2518
-
2519
- #### [TagDeleteSuccessResponse](#TagDeleteSuccessResponse)
2520
-
2521
- | Properties | Type | Nullable | Description |
2522
- | ---------- | ---- | -------- | ----------- || success | boolean | no | |
2523
-
2524
- ---
2525
-
2526
- #### [TagSchema](#TagSchema)
2527
-
2528
- | Properties | Type | Nullable | Description |
2529
- | ---------- | ---- | -------- | ----------- || __source | [TagSourceSchema](#TagSourceSchema) | no | || _id | string | no | || attributes | string | no | || content | string | no | || name | string | no | || pages | [string] | no | || position | string | no | || sub_type | string | no | || type | string | no | || url | string | no | |
2530
-
2531
- ---
2532
-
2533
- #### [TagSourceSchema](#TagSourceSchema)
2534
-
2535
- | Properties | Type | Nullable | Description |
2536
- | ---------- | ---- | -------- | ----------- || id | string | no | || type | string | no | |
2537
-
2538
- ---
2539
-
2540
- #### [TagsSchema](#TagsSchema)
2541
-
2542
- | Properties | Type | Nullable | Description |
2543
- | ---------- | ---- | -------- | ----------- || _id | string | no | || application | string | no | || tags | [[TagSchema](#TagSchema)] | no | |
2544
-
2545
- ---
2546
-
2547
- #### [UpdateFaqCategoryRequestSchema](#UpdateFaqCategoryRequestSchema)
2548
-
2549
- | Properties | Type | Nullable | Description |
2550
- | ---------- | ---- | -------- | ----------- || category | [CategorySchema](#CategorySchema) | no | |
2551
-
2552
- ---
2553
-
2554
- #### [UpdateHandpickedSchema](#UpdateHandpickedSchema)
2555
-
2556
- | Properties | Type | Nullable | Description |
2557
- | ---------- | ---- | -------- | ----------- || tag | [HandpickedTagSchema](#HandpickedTagSchema) | no | |
2558
-
2559
- ---
2560
-
2561
-
2562
-
2563
-
2564
- ### Enums
2565
-
2566
-
2567
-
2568
-
2569
-
2570
- #### [PageType](#PageType)
2571
- Type : string
2572
-
2573
- | Name | Value | Description |
2574
- | ---- | ----- | ----------- |
2575
- | aboutUs | about-us | Symbolic link for About Us: /about-us |
2576
- | addresses | addresses | Symbolic link for Saved Addresses: /profile/address |
2577
- | blog | blog | Symbolic link for Blog: /blog/:slug |
2578
- | brands | brands | Symbolic link for Brands: /brands/:department |
2579
- | cards | cards | Symbolic link for Saved Cards: /profile/my-cards |
2580
- | cart | cart | Symbolic link for Cart: /cart/bag/ |
2581
- | categories | categories | Symbolic link for Categories: /categories/:department |
2582
- | brand | brand | Symbolic link for Brand: /brand/:slug |
2583
- | category | category | Symbolic link for Category: /category/:slug |
2584
- | collection | collection | Symbolic link for Collection: /collection/:slug |
2585
- | collections | collections | Symbolic link for Collections: /collections/ |
2586
- | contactUs | contact-us | Symbolic link for Contact Us: /contact-us/ |
2587
- | external | external | Symbolic link for External Link: /external/ |
2588
- | faq | faq | Symbolic link for FAQ: /faq |
2589
- | freshchat | freshchat | Symbolic link for Chat by Freshchat: /freshchat |
2590
- | home | home | Symbolic link for Home: / |
2591
- | notificationSettings | notification-settings | Symbolic link for Notification Settings: /notification-settings |
2592
- | orders | orders | Symbolic link for Orders: /profile/orders |
2593
- | page | page | Symbolic link for Page: /page/:slug |
2594
- | policy | policy | Symbolic link for Privacy Policy: /privacy-policy |
2595
- | product | product | Symbolic link for Product: /product/:slug |
2596
- | productReviews | product-reviews | Symbolic link for Product Reviews: /product/:slug/reviews |
2597
- | addProductReview | add-product-review | Symbolic link for Add Product review: /product/:slug/add-review |
2598
- | productRequest | product-request | Symbolic link for Product Request: /product-request/ |
2599
- | products | products | Symbolic link for Products: /products/ |
2600
- | profile | profile | Symbolic link for Profile: /profile |
2601
- | profileOrderShipment | profile-order-shipment | Symbolic link for profile orders shipment: /profile/orders/shipment/:shipmentid |
2602
- | profileBasic | profile-basic | Symbolic link for Basic Profile: /profile/details |
2603
- | profileCompany | profile-company | Symbolic link for Profile Company: /profile/company |
2604
- | profileEmails | profile-emails | Symbolic link for Profile Emails: /profile/email |
2605
- | profilePhones | profile-phones | Symbolic link for Profile Phones: /profile/phone |
2606
- | rateUs | rate-us | Symbolic link for Rate Us: /rate-us |
2607
- | referEarn | refer-earn | Symbolic link for Refer & Earn: /profile/refer-earn |
2608
- | settings | settings | Symbolic link for Settings: /setting/currency |
2609
- | sharedCart | shared-cart | Symbolic link for Shared Cart: /shared-cart/:token |
2610
- | tnc | tnc | Symbolic link for Terms and Conditions: /terms-and-conditions |
2611
- | trackOrder | track-order | Symbolic link for Track Order: /order-tracking/:orderId |
2612
- | wishlist | wishlist | Symbolic link for Wishlist: /wishlist/ |
2613
- | sections | sections | Symbolic link for Sections: /sections/:group |
2614
- | form | form | Symbolic link for Form: /form/:slug |
2615
- | cartDelivery | cart-delivery | Symbolic link for Cart Delivery: /cart/delivery |
2616
- | cartPayment | cart-payment | Symbolic link for Cart Payment Information: /cart/payment-info |
2617
- | cartReview | cart-review | Symbolic link for Cart Order Review: /cart/order-review |
2618
- | login | login | Symbolic link for Login: /auth/login |
2619
- | register | register | Symbolic link for Register: /auth/register |
2620
- | shippingPolicy | shipping-policy | Symbolic link for Shipping policy: /shipping-policy |
2621
- | returnPolicy | return-policy | Symbolic link for Return policy: /return-policy |
2622
-
2623
- ---
2624
-
2625
-
2626
-
2627
-
2628
-
2629
-