Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 129.17 KB | None | 0 0
  1. swagger: '2.0'
  2. info:
  3. version: '1.0'
  4. title: myStore slůžba
  5. description: 'TODO: Add a description'
  6. host: asimplia-stage.cloudapp.net:3000
  7. basePath: /
  8. schemes:
  9. - http
  10. consumes:
  11. - application/json
  12. produces:
  13. - application/json
  14. paths:
  15. /:
  16. get:
  17. description: ''
  18. summary: World
  19. operationId: UnnammedEndpointGet
  20. produces:
  21. - application/json
  22. parameters: []
  23. responses:
  24. 200:
  25. description: ''
  26. schema:
  27. $ref: '#/definitions/WorldResponse'
  28. examples:
  29. application/json:
  30. Hello: world
  31. x-unitTests:
  32. - request:
  33. method: GET
  34. uri: /
  35. expectedResponse:
  36. x-allowExtraHeaders: true
  37. x-bodyMatchMode: RAW
  38. x-arrayOrderedMatching: false
  39. x-arrayCheckCount: false
  40. x-matchResponseSchema: true
  41. headers:
  42. Content-Type: application/json
  43. body: ' { "Hello": "world" }'
  44. x-testShouldPass: true
  45. x-testEnabled: true
  46. x-testName: World1
  47. x-testDescription: Testcase for testing endpoint World
  48. x-operation-settings:
  49. CollectParameters: false
  50. AllowDynamicQueryParameters: false
  51. AllowDynamicFormParameters: false
  52. IsMultiContentStreaming: false
  53. /login:
  54. post:
  55. description: ''
  56. summary: Přihlásit uživatele
  57. tags:
  58. - Uživatel
  59. operationId: LoginPost
  60. produces:
  61. - application/json
  62. parameters:
  63. - name: Content-Type
  64. in: header
  65. required: true
  66. type: string
  67. description: ''
  68. - name: body
  69. in: body
  70. required: true
  71. description: ''
  72. schema:
  73. $ref: '#/definitions/PřihlásitUživateleRequest'
  74. responses:
  75. 200:
  76. description: ''
  77. schema:
  78. $ref: '#/definitions/PřihlásitUživateleResponse'
  79. examples:
  80. application/json:
  81. status: loggedIn
  82. message: Uživatel přihlášen
  83. time: 135489548
  84. data:
  85. accessToken: 77d450bbbd948bb44cfa68a21a6c84be0b0a48ea953d2b4214a7d4a74c06ed7c
  86. user_oid: 512e6a85dea8ace96a5855b5
  87. x-unitTests: []
  88. x-operation-settings:
  89. CollectParameters: false
  90. AllowDynamicQueryParameters: false
  91. AllowDynamicFormParameters: false
  92. IsMultiContentStreaming: false
  93. /logout:
  94. post:
  95. description: ''
  96. summary: Odhlásit uživatele
  97. tags:
  98. - Uživatel
  99. operationId: LogoutPost
  100. produces:
  101. - application/json
  102. parameters:
  103. - name: Content-Type
  104. in: header
  105. required: true
  106. type: string
  107. description: ''
  108. - name: body
  109. in: body
  110. required: true
  111. description: ''
  112. schema:
  113. $ref: '#/definitions/OdhlásitUživateleRequest'
  114. responses:
  115. 200:
  116. description: ''
  117. schema:
  118. $ref: '#/definitions/OdhlásitUživateleResponse'
  119. examples:
  120. application/json:
  121. status: loggedOff
  122. message: Uživatel odhlášen
  123. time: 135489548
  124. data: {}
  125. x-unitTests: []
  126. x-operation-settings:
  127. CollectParameters: false
  128. AllowDynamicQueryParameters: false
  129. AllowDynamicFormParameters: false
  130. IsMultiContentStreaming: false
  131. /register:
  132. post:
  133. description: ''
  134. summary: Registrovat uživatele
  135. tags:
  136. - Uživatel
  137. operationId: RegisterPost
  138. produces:
  139. - application/json
  140. parameters:
  141. - name: Content-Type
  142. in: header
  143. required: true
  144. type: string
  145. description: ''
  146. - name: body
  147. in: body
  148. required: true
  149. description: ''
  150. schema:
  151. $ref: '#/definitions/RegistrovatUživateleRequest'
  152. responses:
  153. 200:
  154. description: ''
  155. schema:
  156. $ref: '#/definitions/RegistrovatUživateleResponse'
  157. examples:
  158. application/json:
  159. status: registered
  160. message: Uživatel byl zaregistrován
  161. time: 135489548
  162. data: {}
  163. x-unitTests: []
  164. x-operation-settings:
  165. CollectParameters: false
  166. AllowDynamicQueryParameters: false
  167. AllowDynamicFormParameters: false
  168. IsMultiContentStreaming: false
  169. /user?accessToken={accessToken}:
  170. get:
  171. description: ''
  172. summary: Získat informace o uživateli
  173. tags:
  174. - Uživatel
  175. operationId: UserByAccessTokenGet
  176. produces:
  177. - application/json
  178. parameters:
  179. - name: accessToken
  180. in: path
  181. required: true
  182. type: string
  183. description: Přístupový token pro relaci přihlášení
  184. responses:
  185. 200:
  186. description: ''
  187. schema:
  188. $ref: '#/definitions/ZískatInformaceOUživateliResponse'
  189. examples:
  190. application/json:
  191. status: returned
  192. message: Uživatel vrácen
  193. data:
  194. user:
  195. _id:
  196. $oid: 512e6a7bdea8ace96a5855f4
  197. forename: Michael
  198. surname: Žabka
  199. email: zabka.michael@seznam.cz
  200. authenticates:
  201. - type: username
  202. identity: misak113
  203. verification:
  204. x-unitTests: []
  205. x-operation-settings:
  206. CollectParameters: false
  207. AllowDynamicQueryParameters: false
  208. AllowDynamicFormParameters: false
  209. IsMultiContentStreaming: false
  210. /customers:
  211. get:
  212. description: ''
  213. summary: Získat zákazníky
  214. tags:
  215. - Zákazníci
  216. operationId: CustomersGet
  217. produces:
  218. - application/json
  219. parameters: []
  220. responses:
  221. 200:
  222. description: ''
  223. schema:
  224. type: object
  225. examples: {}
  226. x-unitTests: []
  227. x-operation-settings:
  228. CollectParameters: false
  229. AllowDynamicQueryParameters: false
  230. AllowDynamicFormParameters: false
  231. IsMultiContentStreaming: false
  232. /customer?customerId={customerId}:
  233. get:
  234. description: ''
  235. summary: Získat informace o zákazníkovi
  236. tags:
  237. - Zákazníci
  238. operationId: CustomerByCustomerIdGet
  239. produces:
  240. - application/json
  241. parameters:
  242. - name: customerId
  243. in: path
  244. required: true
  245. type: number
  246. format: double
  247. exclusiveMaximum: false
  248. exclusiveMinimum: false
  249. description: Id zákazníka
  250. responses:
  251. 200:
  252. description: ''
  253. schema:
  254. type: object
  255. examples: {}
  256. x-unitTests: []
  257. x-operation-settings:
  258. CollectParameters: false
  259. AllowDynamicQueryParameters: false
  260. AllowDynamicFormParameters: false
  261. IsMultiContentStreaming: false
  262. /settings:
  263. get:
  264. description: ''
  265. summary: Získat nastavení parametrů uživatele
  266. tags:
  267. - Nastavení
  268. operationId: SettingsGet
  269. produces:
  270. - application/json
  271. parameters: []
  272. responses:
  273. 200:
  274. description: ''
  275. schema:
  276. $ref: '#/definitions/ZískatNastaveníParametrůUživateleResponse'
  277. examples:
  278. application/json:
  279. status: returned
  280. message: Nastavení vrácena
  281. data:
  282. localization.bluetooth: true
  283. localization.gps: false
  284. x-unitTests:
  285. - request:
  286. method: GET
  287. uri: /settings
  288. expectedResponse:
  289. x-allowExtraHeaders: true
  290. x-bodyMatchMode: RAW
  291. x-arrayOrderedMatching: false
  292. x-arrayCheckCount: false
  293. x-matchResponseSchema: true
  294. headers:
  295. Content-Type: application/json
  296. body: '{ "status": "returned", "message": "Nastavení vrácena", "data": { "localization.bluetooth": true, "localization.gps": false }}'
  297. x-testShouldPass: true
  298. x-testEnabled: true
  299. x-testName: Získat nastavení parametrů uživatele1
  300. x-testDescription: Testcase for testing endpoint Získat nastavení parametrů uživatele
  301. x-operation-settings:
  302. CollectParameters: false
  303. AllowDynamicQueryParameters: false
  304. AllowDynamicFormParameters: false
  305. IsMultiContentStreaming: false
  306. post:
  307. description: ''
  308. summary: Nastavit parametr uživatele
  309. tags:
  310. - Nastavení
  311. operationId: SettingsPost
  312. produces:
  313. - application/json
  314. parameters:
  315. - name: Content-Type
  316. in: header
  317. required: true
  318. type: string
  319. description: ''
  320. - name: body
  321. in: body
  322. required: true
  323. description: ''
  324. schema:
  325. $ref: '#/definitions/NastavitParametrUživateleRequest'
  326. responses:
  327. 200:
  328. description: ''
  329. schema:
  330. $ref: '#/definitions/NastavitParametrUživateleResponse'
  331. examples:
  332. application/json:
  333. status: updated
  334. message: Nastavení uložena
  335. time: 135489548
  336. data:
  337. localization.gps: true
  338. x-unitTests: []
  339. x-operation-settings:
  340. CollectParameters: false
  341. AllowDynamicQueryParameters: false
  342. AllowDynamicFormParameters: false
  343. IsMultiContentStreaming: false
  344. /groups:
  345. get:
  346. description: ''
  347. summary: Získat skupiny uživatele
  348. tags:
  349. - Skupiny
  350. operationId: GroupsGet
  351. produces:
  352. - application/json
  353. parameters: []
  354. responses:
  355. 200:
  356. description: ''
  357. schema:
  358. $ref: '#/definitions/ZískatSkupinyUživateleResponse'
  359. examples:
  360. application/json:
  361. status: returned
  362. message: Skupiny vráceny
  363. data:
  364. - id: 1
  365. name: Rodina
  366. x-unitTests:
  367. - request:
  368. method: GET
  369. uri: /groups
  370. expectedResponse:
  371. x-allowExtraHeaders: true
  372. x-bodyMatchMode: RAW
  373. x-arrayOrderedMatching: false
  374. x-arrayCheckCount: false
  375. x-matchResponseSchema: true
  376. headers:
  377. Content-Type: application/json
  378. body: '{ "status": "returned", "message": "Skupiny vráceny", "data": [ { "id": 1, "name": "Rodina" } ]}'
  379. x-testShouldPass: true
  380. x-testEnabled: true
  381. x-testName: Získat skupiny uživatele1
  382. x-testDescription: Testcase for testing endpoint Získat skupiny uživatele
  383. x-operation-settings:
  384. CollectParameters: false
  385. AllowDynamicQueryParameters: false
  386. AllowDynamicFormParameters: false
  387. IsMultiContentStreaming: false
  388. /groups/search?query={query}:
  389. get:
  390. description: ''
  391. summary: Vyhledat skupiny
  392. tags:
  393. - Skupiny
  394. operationId: GroupsSearchByQueryGet
  395. produces:
  396. - application/json
  397. parameters:
  398. - name: query
  399. in: path
  400. required: true
  401. type: string
  402. description: ''
  403. responses:
  404. 200:
  405. description: ''
  406. schema:
  407. $ref: '#/definitions/VyhledatSkupinyResponse'
  408. examples:
  409. application/json:
  410. status: returned
  411. message: Skupiny nalezeny
  412. data:
  413. - id: 2
  414. name: Bonami.cz
  415. - id: 3
  416. name: Bonami.pl
  417. x-unitTests:
  418. - request:
  419. method: GET
  420. uri: /groups/search?query=Bonami
  421. expectedResponse:
  422. x-allowExtraHeaders: true
  423. x-bodyMatchMode: RAW
  424. x-arrayOrderedMatching: false
  425. x-arrayCheckCount: false
  426. x-matchResponseSchema: true
  427. headers:
  428. Content-Type: application/json
  429. body: '{ "status": "returned", "message": "Skupiny nalezeny", "data": [ { "id": 2, "name": "Bonami.cz" }, { "id": 3, "name": "Bonami.pl" } ]}'
  430. x-testShouldPass: true
  431. x-testEnabled: true
  432. x-testName: Vyhledat skupiny1
  433. x-testDescription: Testcase for testing endpoint Vyhledat skupiny
  434. x-operation-settings:
  435. CollectParameters: false
  436. AllowDynamicQueryParameters: false
  437. AllowDynamicFormParameters: false
  438. IsMultiContentStreaming: false
  439. /group?groupId={groupId}:
  440. get:
  441. description: ''
  442. summary: Získat informace o skupině
  443. tags:
  444. - Skupiny
  445. operationId: GroupByGroupIdGet
  446. produces:
  447. - application/json
  448. parameters:
  449. - name: groupId
  450. in: path
  451. required: true
  452. type: number
  453. format: double
  454. exclusiveMaximum: false
  455. exclusiveMinimum: false
  456. description: ''
  457. responses:
  458. 200:
  459. description: ''
  460. schema:
  461. $ref: '#/definitions/ZískatInformaceOSkupiněResponse'
  462. examples:
  463. application/json:
  464. status: returned
  465. message: Skupina vrácena
  466. data:
  467. id: 2
  468. name: Bonami.cz
  469. x-unitTests:
  470. - request:
  471. method: GET
  472. uri: /group?groupId=1
  473. expectedResponse:
  474. x-allowExtraHeaders: true
  475. x-bodyMatchMode: RAW
  476. x-arrayOrderedMatching: false
  477. x-arrayCheckCount: false
  478. x-matchResponseSchema: true
  479. headers:
  480. Content-Type: application/json
  481. body: '{ "status": "returned", "message": "Skupina vrácena", "data": { "id": 2, "name": "Bonami.cz" }}'
  482. x-testShouldPass: true
  483. x-testEnabled: true
  484. x-testName: Získat informace o skupině1
  485. x-testDescription: Testcase for testing endpoint Získat informace o skupině
  486. x-operation-settings:
  487. CollectParameters: false
  488. AllowDynamicQueryParameters: false
  489. AllowDynamicFormParameters: false
  490. IsMultiContentStreaming: false
  491. /group/request:
  492. get:
  493. description: ''
  494. summary: Získat žádosti do skupiny
  495. tags:
  496. - Skupiny
  497. operationId: GroupRequestGet
  498. produces:
  499. - application/json
  500. parameters: []
  501. responses:
  502. 200:
  503. description: ''
  504. schema:
  505. $ref: '#/definitions/ZískatŽádostiDoSkupinyResponse'
  506. examples:
  507. application/json:
  508. status: returned
  509. message: Žádosti vráceny
  510. time: 135489548
  511. data:
  512. - userId: 2
  513. groupId: 1
  514. - userId: 1
  515. groupId: 1
  516. x-unitTests:
  517. - request:
  518. method: GET
  519. uri: /group/request
  520. expectedResponse:
  521. x-allowExtraHeaders: true
  522. x-bodyMatchMode: RAW
  523. x-arrayOrderedMatching: false
  524. x-arrayCheckCount: false
  525. x-matchResponseSchema: true
  526. headers:
  527. Content-Type: application/json
  528. body: '{ "status": "returned", "message": "Žádosti vráceny", "time": 135489548, "data": [ { "userId": 2, "groupId": 1 }, { "userId": 1, "groupId": 1 } ]}'
  529. x-testShouldPass: true
  530. x-testEnabled: true
  531. x-testName: Získat žádosti do skupiny1
  532. x-testDescription: Testcase for testing endpoint Získat žádosti do skupiny
  533. x-operation-settings:
  534. CollectParameters: false
  535. AllowDynamicQueryParameters: false
  536. AllowDynamicFormParameters: false
  537. IsMultiContentStreaming: false
  538. put:
  539. description: ''
  540. summary: Skupina žádost_Požádat o členství ve skupině
  541. tags:
  542. - Skupiny
  543. operationId: GroupRequestPut
  544. produces:
  545. - application/json
  546. parameters:
  547. - name: Content-Type
  548. in: header
  549. required: true
  550. type: string
  551. description: ''
  552. - name: body
  553. in: body
  554. required: true
  555. description: ''
  556. schema:
  557. $ref: '#/definitions/Skupina žádostPožádat o členství ve skupině request'
  558. responses:
  559. 200:
  560. description: ''
  561. schema:
  562. $ref: '#/definitions/Skupina žádostPožádat o členství ve skupině response'
  563. examples:
  564. application/json:
  565. status: accepted
  566. message: Žádost schválena
  567. time: 135489548
  568. data:
  569. userId: 1
  570. groupId: 1
  571. x-unitTests: []
  572. x-operation-settings:
  573. CollectParameters: false
  574. AllowDynamicQueryParameters: false
  575. AllowDynamicFormParameters: false
  576. IsMultiContentStreaming: false
  577. post:
  578. description: ''
  579. summary: Požádat o členství ve skupině
  580. tags:
  581. - Skupiny
  582. operationId: GroupRequestPost
  583. produces:
  584. - application/json
  585. parameters:
  586. - name: Content-Type
  587. in: header
  588. required: true
  589. type: string
  590. description: ''
  591. - name: body
  592. in: body
  593. required: true
  594. description: ''
  595. schema:
  596. $ref: '#/definitions/PožádatOČlenstvíVeSkupiněRequest'
  597. responses:
  598. 200:
  599. description: ''
  600. schema:
  601. $ref: '#/definitions/PožádatOČlenstvíVeSkupiněResponse'
  602. examples:
  603. application/json:
  604. status: requested
  605. message: Žádost odeslána
  606. time: 135489548
  607. data:
  608. id: 1
  609. name: Rodina
  610. x-unitTests: []
  611. x-operation-settings:
  612. CollectParameters: false
  613. AllowDynamicQueryParameters: false
  614. AllowDynamicFormParameters: false
  615. IsMultiContentStreaming: false
  616. /offers:
  617. get:
  618. description: ''
  619. summary: Získat nabídky uživatele
  620. tags:
  621. - Nabídky
  622. operationId: OffersGet
  623. produces:
  624. - application/json
  625. parameters: []
  626. responses:
  627. 200:
  628. description: ''
  629. schema:
  630. $ref: '#/definitions/ZískatNabídkyUživateleResponse'
  631. examples:
  632. application/json:
  633. status: returned
  634. message: Nabídky vráceny
  635. data:
  636. - _id:
  637. $oid: 512e6a7bdea8ace96a5855b4
  638. title: Lahodná rajčátka
  639. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  640. price: 18.539999999999999
  641. currency: czk
  642. date_start: 2013-01-02T12:00:00.0000000
  643. date_end: 2013-01-18T18:59:59.0000000
  644. qtyLimitTotal: 100
  645. qtyLimitUser: 10
  646. categories:
  647. - personal
  648. - common
  649. product:
  650. id: 146860
  651. name: Rajčata
  652. title: Rajčata Balení 250g
  653. product_code: 566489138
  654. short_description: ''
  655. description:
  656. quantity: 250
  657. measure_unit: g
  658. price: 25.800000000000001
  659. currency: czk
  660. image:
  661. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  662. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  663. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  664. images:
  665. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  666. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  667. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  668. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  669. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  670. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  671. priority: 0.89041499999999996
  672. image:
  673. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  674. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  675. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  676. images:
  677. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  678. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  679. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  680. - _id:
  681. $oid: 512e6a85dea8ace96a5855b5
  682. title: Bílá čokoláda
  683. description: Čokoláda co se rozplývá na jazyku!
  684. price: 42.890000000000001
  685. currency: czk
  686. date_start: 2012-11-12T12:00:00.0000000
  687. date_end: 2013-02-09T18:59:59.0000000
  688. qtyLimitTotal:
  689. qtyLimitUser: 100
  690. categories:
  691. - common
  692. product:
  693. id: 146861
  694. name: Čokoláda
  695. title: Bílá čokoláda 120g
  696. product_code: 566489148
  697. short_description: ''
  698. description:
  699. quantity: 120
  700. measure_unit: g
  701. price: 75.900000000000006
  702. currency: czk
  703. image:
  704. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  705. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  706. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  707. images:
  708. - small: http://api.myretail.cz/images/chocolate-14861-1_small.png
  709. medium: http://api.myretail.cz/images/chocolate-14861-1_medium.png
  710. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  711. priority: 0.45143699999999998
  712. image:
  713. small: http://yojoyfrozenyogurt.com/wp-content/uploads/catablog/thumbnails/white%20chocolate%20mousse.jpg
  714. medium: http://www.friarsofkeswick.co.uk/files/imagecache/product_list/files/white_marzipan2_0.jpg
  715. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  716. images: []
  717. x-unitTests:
  718. - request:
  719. method: GET
  720. uri: /offers
  721. expectedResponse:
  722. x-allowExtraHeaders: true
  723. x-bodyMatchMode: RAW
  724. x-arrayOrderedMatching: false
  725. x-arrayCheckCount: false
  726. x-matchResponseSchema: true
  727. headers:
  728. Content-Type: application/json
  729. body: '{ "status": "returned", "message": "Nabídky vráceny", "data": [ { "_id": {"$oid": "512e6a7bdea8ace96a5855b4"}, "title" : "Lahodná rajčátka", "description" : "Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti", "price" : 18.54, "currency" : "czk", "date_start" : "2013-01-02T12:00:00", "date_end" : "2013-01-18T18:59:59", "qtyLimitTotal" : 100, "qtyLimitUser" : 10, "categories": ["personal", "common"], "product" : { "id" : 146860, "name" : "Rajčata", "title" : "Rajčata Balení 250g", "product_code" : "566489138", "short_description" : "", "description" : null, "quantity" : 250, "measure_unit" : "g", "price" : 25.8, "currency" : "czk", "image": { "small" : "http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg", "medium" : "http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" }, "images" : [ { "small" : "http://api.myretail.cz/images/tomate-250g-14860-1_small.png", "medium" : "http://api.myretail.cz/images/tomate-250g-14860-1_medium.png", "large" : "http://api.myretail.cz/images/tomate-250g-14860-1_large.png" }, { "small" : "http://api.myretail.cz/images/tomate-250g-14860-2_small.png", "medium" : "http://api.myretail.cz/images/tomate-250g-14860-2_medium.png", "large" : "http://api.myretail.cz/images/tomate-250g-14860-2_large.png" } ] }, "priority" : 0.890415, "image": { "small" : "http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg", "medium" : "http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" }, "images" : [ { "small" : "http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png", "medium" : "http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" } ] }, { "_id" : {"$oid": "512e6a85dea8ace96a5855b5"}, "title" : "Bílá čokoláda", "description" : "Čokoláda co se rozplývá na jazyku!", "price" : 42.89, "currency" : "czk", "date_start" : "2012-11-12T12:00:00", "date_end" : "2013-02-09T18:59:59", "qtyLimitTotal" : null, "qtyLimitUser" : 100, "categories": ["common"], "product" : { "id" : 146861, "name" : "Čokoláda", "title" : "Bílá čokoláda 120g", "product_code" : "566489148", "short_description" : "", "description" : null, "quantity" : 120, "measure_unit" : "g", "price" : 75.9, "currency" : "czk", "image": { "small" : "http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg", "medium" : "http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" }, "images" : [ { "small" : "http://api.myretail.cz/images/chocolate-14861-1_small.png", "medium" : "http://api.myretail.cz/images/chocolate-14861-1_medium.png", "large" : "http://api.myretail.cz/images/chocolate-14861-1_large.png" } ] }, "priority" : 0.451437, "image": { "small" : "http://yojoyfrozenyogurt.com/wp-content/uploads/catablog/thumbnails/white%20chocolate%20mousse.jpg", "medium" : "http://www.friarsofkeswick.co.uk/files/imagecache/product_list/files/white_marzipan2_0.jpg", "large" : "http://api.myretail.cz/images/chocolate-14861-1_large.png" }, "images" : [] } ]}'
  730. x-testShouldPass: true
  731. x-testEnabled: true
  732. x-testName: Získat nabídky uživatele1
  733. x-testDescription: Testcase for testing endpoint Získat nabídky uživatele
  734. x-operation-settings:
  735. CollectParameters: false
  736. AllowDynamicQueryParameters: false
  737. AllowDynamicFormParameters: false
  738. IsMultiContentStreaming: false
  739. /offer:
  740. get:
  741. description: ''
  742. summary: Získat informace o nabídce
  743. tags:
  744. - Nabídky
  745. operationId: OfferGet
  746. produces:
  747. - application/json
  748. parameters: []
  749. responses:
  750. 200:
  751. description: ''
  752. schema:
  753. $ref: '#/definitions/ZískatInformaceONabídceResponse'
  754. examples:
  755. application/json:
  756. status: returned
  757. message: Nabídky vráceny
  758. data:
  759. _id:
  760. $oid: 512e6a7bdea8ace96a5855b4
  761. title: Lahodná rajčátka
  762. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  763. price: 18.539999999999999
  764. currency: czk
  765. date_start: 2013-01-02T12:00:00.0000000
  766. date_end: 2013-01-18T18:59:59.0000000
  767. qtyLimitTotal: 100
  768. qtyLimitUser: 10
  769. categories:
  770. - personal
  771. - common
  772. product:
  773. id: 146860
  774. name: Rajčata
  775. title: Rajčata Balení 250g
  776. product_code: 566489138
  777. short_description: ''
  778. description:
  779. quantity: 250
  780. measure_unit: g
  781. price: 25.800000000000001
  782. currency: czk
  783. image:
  784. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  785. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  786. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  787. images:
  788. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  789. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  790. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  791. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  792. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  793. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  794. priority: 0.89041499999999996
  795. image:
  796. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  797. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  798. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  799. images:
  800. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  801. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  802. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  803. x-unitTests:
  804. - request:
  805. method: GET
  806. uri: /offer
  807. expectedResponse:
  808. x-allowExtraHeaders: true
  809. x-bodyMatchMode: RAW
  810. x-arrayOrderedMatching: false
  811. x-arrayCheckCount: false
  812. x-matchResponseSchema: true
  813. headers:
  814. Content-Type: application/json
  815. body: '{ "status": "returned", "message": "Nabídky vráceny", "data": { "_id": {"$oid": "512e6a7bdea8ace96a5855b4"}, "title" : "Lahodná rajčátka", "description" : "Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti", "price" : 18.54, "currency" : "czk", "date_start" : "2013-01-02T12:00:00", "date_end" : "2013-01-18T18:59:59", "qtyLimitTotal" : 100, "qtyLimitUser" : 10, "categories": ["personal", "common"], "product" : { "id" : 146860, "name" : "Rajčata", "title" : "Rajčata Balení 250g", "product_code" : "566489138", "short_description" : "", "description" : null, "quantity" : 250, "measure_unit" : "g", "price" : 25.8, "currency" : "czk", "image": { "small" : "http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg", "medium" : "http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" }, "images" : [ { "small" : "http://api.myretail.cz/images/tomate-250g-14860-1_small.png", "medium" : "http://api.myretail.cz/images/tomate-250g-14860-1_medium.png", "large" : "http://api.myretail.cz/images/tomate-250g-14860-1_large.png" }, { "small" : "http://api.myretail.cz/images/tomate-250g-14860-2_small.png", "medium" : "http://api.myretail.cz/images/tomate-250g-14860-2_medium.png", "large" : "http://api.myretail.cz/images/tomate-250g-14860-2_large.png" } ] }, "priority" : 0.890415, "image": { "small" : "http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg", "medium" : "http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" }, "images" : [ { "small" : "http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png", "medium" : "http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png", "large" : "http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png" } ] }}'
  816. x-testShouldPass: true
  817. x-testEnabled: true
  818. x-testName: Získat informace o nabídce1
  819. x-testDescription: Testcase for testing endpoint Získat informace o nabídce
  820. x-operation-settings:
  821. CollectParameters: false
  822. AllowDynamicQueryParameters: false
  823. AllowDynamicFormParameters: false
  824. IsMultiContentStreaming: false
  825. /offer/unwant:
  826. post:
  827. description: ''
  828. summary: Odmítnout nabídku
  829. tags:
  830. - Nabídky
  831. operationId: OfferUnwantPost
  832. produces:
  833. - application/json
  834. parameters:
  835. - name: Content-Type
  836. in: header
  837. required: true
  838. type: string
  839. description: ''
  840. - name: body
  841. in: body
  842. required: true
  843. description: ''
  844. schema:
  845. $ref: '#/definitions/OdmítnoutNabídkuRequest'
  846. responses:
  847. 200:
  848. description: ''
  849. schema:
  850. $ref: '#/definitions/OdmítnoutNabídkuResponse'
  851. examples:
  852. application/json:
  853. status: unwanted
  854. message: Nabídka označena jako nechtěná
  855. data: {}
  856. x-unitTests: []
  857. x-operation-settings:
  858. CollectParameters: false
  859. AllowDynamicQueryParameters: false
  860. AllowDynamicFormParameters: false
  861. IsMultiContentStreaming: false
  862. /serial-offers:
  863. get:
  864. description: ''
  865. summary: Získat seriálové nabídky
  866. tags:
  867. - Seriálové nabídky
  868. operationId: SerialOffersGet
  869. produces:
  870. - application/json
  871. parameters: []
  872. responses:
  873. 200:
  874. description: ''
  875. schema:
  876. $ref: '#/definitions/ZískatSeriálovéNabídkyResponse'
  877. examples:
  878. application/json:
  879. status: not-implemented
  880. message: Není implementováno
  881. data: {}
  882. x-unitTests:
  883. - request:
  884. method: GET
  885. uri: /serial-offers
  886. expectedResponse:
  887. x-allowExtraHeaders: true
  888. x-bodyMatchMode: RAW
  889. x-arrayOrderedMatching: false
  890. x-arrayCheckCount: false
  891. x-matchResponseSchema: true
  892. headers:
  893. Content-Type: application/json
  894. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  895. x-testShouldPass: true
  896. x-testEnabled: true
  897. x-testName: Získat seriálové nabídky1
  898. x-testDescription: Testcase for testing endpoint Získat seriálové nabídky
  899. x-operation-settings:
  900. CollectParameters: false
  901. AllowDynamicQueryParameters: false
  902. AllowDynamicFormParameters: false
  903. IsMultiContentStreaming: false
  904. /serial-offer:
  905. get:
  906. description: ''
  907. summary: Získat informace o seriálové nabídce
  908. tags:
  909. - Seriálové nabídky
  910. operationId: SerialOfferGet
  911. produces:
  912. - application/json
  913. parameters: []
  914. responses:
  915. 200:
  916. description: ''
  917. schema:
  918. $ref: '#/definitions/ZískatInformaceOSeriálovéNabídceResponse'
  919. examples:
  920. application/json:
  921. status: not-implemented
  922. message: Není implementováno
  923. data: {}
  924. x-unitTests:
  925. - request:
  926. method: GET
  927. uri: /serial-offer
  928. expectedResponse:
  929. x-allowExtraHeaders: true
  930. x-bodyMatchMode: RAW
  931. x-arrayOrderedMatching: false
  932. x-arrayCheckCount: false
  933. x-matchResponseSchema: true
  934. headers:
  935. Content-Type: application/json
  936. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  937. x-testShouldPass: true
  938. x-testEnabled: true
  939. x-testName: Získat informace o seriálové nabídce1
  940. x-testDescription: Testcase for testing endpoint Získat informace o seriálové nabídce
  941. x-operation-settings:
  942. CollectParameters: false
  943. AllowDynamicQueryParameters: false
  944. AllowDynamicFormParameters: false
  945. IsMultiContentStreaming: false
  946. /serial-offer/unwant:
  947. post:
  948. description: ''
  949. summary: Odmítnout seriálovou nabídku
  950. tags:
  951. - Seriálové nabídky
  952. operationId: SerialOfferUnwantPost
  953. produces:
  954. - application/json
  955. parameters: []
  956. responses:
  957. 200:
  958. description: ''
  959. schema:
  960. $ref: '#/definitions/OdmítnoutSeriálovouNabídkuResponse'
  961. examples:
  962. application/json:
  963. status: not-implemented
  964. message: Není implementováno
  965. data: {}
  966. x-unitTests:
  967. - request:
  968. method: POST
  969. uri: /serial-offer/unwant
  970. expectedResponse:
  971. x-allowExtraHeaders: true
  972. x-bodyMatchMode: RAW
  973. x-arrayOrderedMatching: false
  974. x-arrayCheckCount: false
  975. x-matchResponseSchema: true
  976. headers:
  977. Content-Type: application/json
  978. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  979. x-testShouldPass: true
  980. x-testEnabled: true
  981. x-testName: Odmítnout seriálovou nabídku1
  982. x-testDescription: Testcase for testing endpoint Odmítnout seriálovou nabídku
  983. x-operation-settings:
  984. CollectParameters: false
  985. AllowDynamicQueryParameters: false
  986. AllowDynamicFormParameters: false
  987. IsMultiContentStreaming: false
  988. /purchases:
  989. get:
  990. description: ''
  991. summary: Získat nákupy uživatele
  992. tags:
  993. - Nákupy
  994. operationId: PurchasesGet
  995. produces:
  996. - application/json
  997. parameters: []
  998. responses:
  999. 200:
  1000. description: ''
  1001. schema:
  1002. $ref: '#/definitions/ZískatNákupyUživateleResponse'
  1003. examples:
  1004. application/json:
  1005. status: not-implemented
  1006. message: Není implementováno
  1007. data: {}
  1008. x-unitTests:
  1009. - request:
  1010. method: GET
  1011. uri: /purchases
  1012. expectedResponse:
  1013. x-allowExtraHeaders: true
  1014. x-bodyMatchMode: RAW
  1015. x-arrayOrderedMatching: false
  1016. x-arrayCheckCount: false
  1017. x-matchResponseSchema: true
  1018. headers:
  1019. Content-Type: application/json
  1020. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1021. x-testShouldPass: true
  1022. x-testEnabled: true
  1023. x-testName: Získat nákupy uživatele1
  1024. x-testDescription: Testcase for testing endpoint Získat nákupy uživatele
  1025. x-operation-settings:
  1026. CollectParameters: false
  1027. AllowDynamicQueryParameters: false
  1028. AllowDynamicFormParameters: false
  1029. IsMultiContentStreaming: false
  1030. /purchase:
  1031. get:
  1032. description: ''
  1033. summary: Získat informace o nákupu
  1034. tags:
  1035. - Nákupy
  1036. operationId: PurchaseGet
  1037. produces:
  1038. - application/json
  1039. parameters: []
  1040. responses:
  1041. 200:
  1042. description: ''
  1043. schema:
  1044. $ref: '#/definitions/ZískatInformaceONákupuResponse'
  1045. examples:
  1046. application/json:
  1047. status: not-implemented
  1048. message: Není implementováno
  1049. data: {}
  1050. x-unitTests:
  1051. - request:
  1052. method: GET
  1053. uri: /purchase
  1054. expectedResponse:
  1055. x-allowExtraHeaders: true
  1056. x-bodyMatchMode: RAW
  1057. x-arrayOrderedMatching: false
  1058. x-arrayCheckCount: false
  1059. x-matchResponseSchema: true
  1060. headers:
  1061. Content-Type: application/json
  1062. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1063. x-testShouldPass: true
  1064. x-testEnabled: true
  1065. x-testName: Získat informace o nákupu1
  1066. x-testDescription: Testcase for testing endpoint Získat informace o nákupu
  1067. x-operation-settings:
  1068. CollectParameters: false
  1069. AllowDynamicQueryParameters: false
  1070. AllowDynamicFormParameters: false
  1071. IsMultiContentStreaming: false
  1072. /shopping-carts:
  1073. get:
  1074. description: ''
  1075. summary: Získat nákupní seznamy
  1076. tags:
  1077. - Nákupní seznamy
  1078. operationId: ShoppingCartsGet
  1079. produces:
  1080. - application/json
  1081. parameters: []
  1082. responses:
  1083. 200:
  1084. description: ''
  1085. schema:
  1086. $ref: '#/definitions/ZískatNákupníSeznamyResponse'
  1087. examples:
  1088. application/json:
  1089. status: not-implemented
  1090. message: Není implementováno
  1091. data: {}
  1092. x-unitTests:
  1093. - request:
  1094. method: GET
  1095. uri: /shopping-carts
  1096. expectedResponse:
  1097. x-allowExtraHeaders: true
  1098. x-bodyMatchMode: RAW
  1099. x-arrayOrderedMatching: false
  1100. x-arrayCheckCount: false
  1101. x-matchResponseSchema: true
  1102. headers:
  1103. Content-Type: application/json
  1104. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1105. x-testShouldPass: true
  1106. x-testEnabled: true
  1107. x-testName: Získat nákupní seznamy1
  1108. x-testDescription: Testcase for testing endpoint Získat nákupní seznamy
  1109. x-operation-settings:
  1110. CollectParameters: false
  1111. AllowDynamicQueryParameters: false
  1112. AllowDynamicFormParameters: false
  1113. IsMultiContentStreaming: false
  1114. /shopping-cart:
  1115. get:
  1116. description: ''
  1117. summary: Získat informace o nákupním seznamu
  1118. tags:
  1119. - Nákupní seznamy
  1120. operationId: ShoppingCartGet
  1121. produces:
  1122. - application/json
  1123. parameters: []
  1124. responses:
  1125. 200:
  1126. description: ''
  1127. schema:
  1128. $ref: '#/definitions/ZískatInformaceONákupnímSeznamuResponse'
  1129. examples:
  1130. application/json:
  1131. status: not-implemented
  1132. message: Není implementováno
  1133. data: {}
  1134. x-unitTests:
  1135. - request:
  1136. method: GET
  1137. uri: /shopping-cart
  1138. expectedResponse:
  1139. x-allowExtraHeaders: true
  1140. x-bodyMatchMode: RAW
  1141. x-arrayOrderedMatching: false
  1142. x-arrayCheckCount: false
  1143. x-matchResponseSchema: true
  1144. headers:
  1145. Content-Type: application/json
  1146. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1147. x-testShouldPass: true
  1148. x-testEnabled: true
  1149. x-testName: Získat informace o nákupním seznamu1
  1150. x-testDescription: Testcase for testing endpoint Získat informace o nákupním seznamu
  1151. x-operation-settings:
  1152. CollectParameters: false
  1153. AllowDynamicQueryParameters: false
  1154. AllowDynamicFormParameters: false
  1155. IsMultiContentStreaming: false
  1156. put:
  1157. description: ''
  1158. summary: Vytvořit/Uložit nákupní seznam
  1159. tags:
  1160. - Nákupní seznamy
  1161. operationId: ShoppingCartPut
  1162. produces:
  1163. - application/json
  1164. parameters: []
  1165. responses:
  1166. 200:
  1167. description: ''
  1168. schema:
  1169. $ref: '#/definitions/Vytvořit~1uložitNákupníSeznamResponse'
  1170. examples:
  1171. application/json:
  1172. status: not-implemented
  1173. message: Není implementováno
  1174. data: {}
  1175. x-unitTests:
  1176. - request:
  1177. method: PUT
  1178. uri: /shopping-cart
  1179. expectedResponse:
  1180. x-allowExtraHeaders: true
  1181. x-bodyMatchMode: RAW
  1182. x-arrayOrderedMatching: false
  1183. x-arrayCheckCount: false
  1184. x-matchResponseSchema: true
  1185. headers:
  1186. Content-Type: application/json
  1187. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1188. x-testShouldPass: true
  1189. x-testEnabled: true
  1190. x-testName: Vytvořit/Uložit nákupní seznam1
  1191. x-testDescription: Testcase for testing endpoint Vytvořit/Uložit nákupní seznam
  1192. x-operation-settings:
  1193. CollectParameters: false
  1194. AllowDynamicQueryParameters: false
  1195. AllowDynamicFormParameters: false
  1196. IsMultiContentStreaming: false
  1197. delete:
  1198. description: ''
  1199. summary: Odstranit nákupní seznam
  1200. tags:
  1201. - Nákupní seznamy
  1202. operationId: ShoppingCartDelete
  1203. produces:
  1204. - application/json
  1205. parameters: []
  1206. responses:
  1207. 200:
  1208. description: ''
  1209. schema:
  1210. $ref: '#/definitions/OdstranitNákupníSeznamResponse'
  1211. examples:
  1212. application/json:
  1213. status: not-implemented
  1214. message: Není implementováno
  1215. data: {}
  1216. x-unitTests:
  1217. - request:
  1218. method: DELETE
  1219. uri: /shopping-cart
  1220. expectedResponse:
  1221. x-allowExtraHeaders: true
  1222. x-bodyMatchMode: RAW
  1223. x-arrayOrderedMatching: false
  1224. x-arrayCheckCount: false
  1225. x-matchResponseSchema: true
  1226. headers:
  1227. Content-Type: application/json
  1228. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1229. x-testShouldPass: true
  1230. x-testEnabled: true
  1231. x-testName: Odstranit nákupní seznam1
  1232. x-testDescription: Testcase for testing endpoint Odstranit nákupní seznam
  1233. x-operation-settings:
  1234. CollectParameters: false
  1235. AllowDynamicQueryParameters: false
  1236. AllowDynamicFormParameters: false
  1237. IsMultiContentStreaming: false
  1238. /shopping-cart/recover:
  1239. post:
  1240. description: ''
  1241. summary: Obnovit odstraněný nákupní seznam
  1242. tags:
  1243. - Nákupní seznamy
  1244. operationId: ShoppingCartRecoverPost
  1245. produces:
  1246. - application/json
  1247. parameters: []
  1248. responses:
  1249. 200:
  1250. description: ''
  1251. schema:
  1252. $ref: '#/definitions/ObnovitOdstraněnýNákupníSeznamResponse'
  1253. examples:
  1254. application/json:
  1255. status: not-implemented
  1256. message: Není implementováno
  1257. data: {}
  1258. x-unitTests:
  1259. - request:
  1260. method: POST
  1261. uri: /shopping-cart/recover
  1262. expectedResponse:
  1263. x-allowExtraHeaders: true
  1264. x-bodyMatchMode: RAW
  1265. x-arrayOrderedMatching: false
  1266. x-arrayCheckCount: false
  1267. x-matchResponseSchema: true
  1268. headers:
  1269. Content-Type: application/json
  1270. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1271. x-testShouldPass: true
  1272. x-testEnabled: true
  1273. x-testName: Obnovit odstraněný nákupní seznam1
  1274. x-testDescription: Testcase for testing endpoint Obnovit odstraněný nákupní seznam
  1275. x-operation-settings:
  1276. CollectParameters: false
  1277. AllowDynamicQueryParameters: false
  1278. AllowDynamicFormParameters: false
  1279. IsMultiContentStreaming: false
  1280. /shopping-cart/add-product:
  1281. put:
  1282. description: ''
  1283. summary: Přidat produkt do nákupního seznamu
  1284. tags:
  1285. - Nákupní seznamy
  1286. operationId: ShoppingCartAddProductPut
  1287. produces:
  1288. - application/json
  1289. parameters: []
  1290. responses:
  1291. 200:
  1292. description: ''
  1293. schema:
  1294. $ref: '#/definitions/PřidatProduktDoNákupníhoSeznamuResponse'
  1295. examples:
  1296. application/json:
  1297. status: not-implemented
  1298. message: Není implementováno
  1299. data: {}
  1300. x-unitTests:
  1301. - request:
  1302. method: PUT
  1303. uri: /shopping-cart/add-product
  1304. expectedResponse:
  1305. x-allowExtraHeaders: true
  1306. x-bodyMatchMode: RAW
  1307. x-arrayOrderedMatching: false
  1308. x-arrayCheckCount: false
  1309. x-matchResponseSchema: true
  1310. headers:
  1311. Content-Type: application/json
  1312. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1313. x-testShouldPass: true
  1314. x-testEnabled: true
  1315. x-testName: Přidat produkt do nákupního seznamu1
  1316. x-testDescription: Testcase for testing endpoint Přidat produkt do nákupního seznamu
  1317. x-operation-settings:
  1318. CollectParameters: false
  1319. AllowDynamicQueryParameters: false
  1320. AllowDynamicFormParameters: false
  1321. IsMultiContentStreaming: false
  1322. /shopping-cart/add-products/complements:
  1323. put:
  1324. description: ''
  1325. summary: Vložit komplementy do nákupního seznamu
  1326. tags:
  1327. - Nákupní seznamy
  1328. operationId: ShoppingCartAddProductsComplementsPut
  1329. produces:
  1330. - application/json
  1331. parameters: []
  1332. responses:
  1333. 200:
  1334. description: ''
  1335. schema:
  1336. $ref: '#/definitions/VložitKomplementyDoNákupníhoSeznamuResponse'
  1337. examples:
  1338. application/json:
  1339. status: not-implemented
  1340. message: Není implementováno
  1341. data: {}
  1342. x-unitTests:
  1343. - request:
  1344. method: PUT
  1345. uri: /shopping-cart/add-products/complements
  1346. expectedResponse:
  1347. x-allowExtraHeaders: true
  1348. x-bodyMatchMode: RAW
  1349. x-arrayOrderedMatching: false
  1350. x-arrayCheckCount: false
  1351. x-matchResponseSchema: true
  1352. headers:
  1353. Content-Type: application/json
  1354. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1355. x-testShouldPass: true
  1356. x-testEnabled: true
  1357. x-testName: Vložit komplementy do nákupního seznamu1
  1358. x-testDescription: Testcase for testing endpoint Vložit komplementy do nákupního seznamu
  1359. x-operation-settings:
  1360. CollectParameters: false
  1361. AllowDynamicQueryParameters: false
  1362. AllowDynamicFormParameters: false
  1363. IsMultiContentStreaming: false
  1364. /shopping-cart/from-recipe:
  1365. post:
  1366. description: ''
  1367. summary: Vytvořit nákupní seznam z receptu
  1368. tags:
  1369. - Nákupní seznamy
  1370. operationId: ShoppingCartFromRecipePost
  1371. produces:
  1372. - application/json
  1373. parameters: []
  1374. responses:
  1375. 200:
  1376. description: ''
  1377. schema:
  1378. $ref: '#/definitions/VytvořitNákupníSeznamZReceptuResponse'
  1379. examples:
  1380. application/json:
  1381. status: not-implemented
  1382. message: Není implementováno
  1383. data: {}
  1384. x-unitTests:
  1385. - request:
  1386. method: POST
  1387. uri: /shopping-cart/from-recipe
  1388. expectedResponse:
  1389. x-allowExtraHeaders: true
  1390. x-bodyMatchMode: RAW
  1391. x-arrayOrderedMatching: false
  1392. x-arrayCheckCount: false
  1393. x-matchResponseSchema: true
  1394. headers:
  1395. Content-Type: application/json
  1396. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1397. x-testShouldPass: true
  1398. x-testEnabled: true
  1399. x-testName: Vytvořit nákupní seznam z receptu1
  1400. x-testDescription: Testcase for testing endpoint Vytvořit nákupní seznam z receptu
  1401. x-operation-settings:
  1402. CollectParameters: false
  1403. AllowDynamicQueryParameters: false
  1404. AllowDynamicFormParameters: false
  1405. IsMultiContentStreaming: false
  1406. /products:
  1407. get:
  1408. description: ''
  1409. summary: Získat produkty
  1410. tags:
  1411. - Produkty
  1412. operationId: ProductsGet
  1413. produces:
  1414. - application/json
  1415. parameters: []
  1416. responses:
  1417. 200:
  1418. description: ''
  1419. schema:
  1420. $ref: '#/definitions/ZískatProduktyResponse'
  1421. examples:
  1422. application/json:
  1423. status: not-implemented
  1424. message: Není implementováno
  1425. data: {}
  1426. x-unitTests:
  1427. - request:
  1428. method: GET
  1429. uri: /products
  1430. expectedResponse:
  1431. x-allowExtraHeaders: true
  1432. x-bodyMatchMode: RAW
  1433. x-arrayOrderedMatching: false
  1434. x-arrayCheckCount: false
  1435. x-matchResponseSchema: true
  1436. headers:
  1437. Content-Type: application/json
  1438. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1439. x-testShouldPass: true
  1440. x-testEnabled: true
  1441. x-testName: Získat produkty1
  1442. x-testDescription: Testcase for testing endpoint Získat produkty
  1443. x-operation-settings:
  1444. CollectParameters: false
  1445. AllowDynamicQueryParameters: false
  1446. AllowDynamicFormParameters: false
  1447. IsMultiContentStreaming: false
  1448. /product:
  1449. get:
  1450. description: ''
  1451. summary: Získat informace o produktu
  1452. tags:
  1453. - Produkty
  1454. operationId: ProductGet
  1455. produces:
  1456. - application/json
  1457. parameters: []
  1458. responses:
  1459. 200:
  1460. description: ''
  1461. schema:
  1462. $ref: '#/definitions/ZískatInformaceOProduktuResponse'
  1463. examples:
  1464. application/json:
  1465. status: not-implemented
  1466. message: Není implementováno
  1467. data: {}
  1468. x-unitTests:
  1469. - request:
  1470. method: GET
  1471. uri: /product
  1472. expectedResponse:
  1473. x-allowExtraHeaders: true
  1474. x-bodyMatchMode: RAW
  1475. x-arrayOrderedMatching: false
  1476. x-arrayCheckCount: false
  1477. x-matchResponseSchema: true
  1478. headers:
  1479. Content-Type: application/json
  1480. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1481. x-testShouldPass: true
  1482. x-testEnabled: true
  1483. x-testName: Získat informace o produktu1
  1484. x-testDescription: Testcase for testing endpoint Získat informace o produktu
  1485. x-operation-settings:
  1486. CollectParameters: false
  1487. AllowDynamicQueryParameters: false
  1488. AllowDynamicFormParameters: false
  1489. IsMultiContentStreaming: false
  1490. /product/rate:
  1491. post:
  1492. description: ''
  1493. summary: Ohodnotit produkt
  1494. tags:
  1495. - Produkty
  1496. operationId: ProductRatePost
  1497. produces:
  1498. - application/json
  1499. parameters: []
  1500. responses:
  1501. 200:
  1502. description: ''
  1503. schema:
  1504. $ref: '#/definitions/OhodnotitProduktResponse'
  1505. examples:
  1506. application/json:
  1507. status: not-implemented
  1508. message: Není implementováno
  1509. data: {}
  1510. x-unitTests:
  1511. - request:
  1512. method: POST
  1513. uri: /product/rate
  1514. expectedResponse:
  1515. x-allowExtraHeaders: true
  1516. x-bodyMatchMode: RAW
  1517. x-arrayOrderedMatching: false
  1518. x-arrayCheckCount: false
  1519. x-matchResponseSchema: true
  1520. headers:
  1521. Content-Type: application/json
  1522. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1523. x-testShouldPass: true
  1524. x-testEnabled: true
  1525. x-testName: Ohodnotit produkt1
  1526. x-testDescription: Testcase for testing endpoint Ohodnotit produkt
  1527. x-operation-settings:
  1528. CollectParameters: false
  1529. AllowDynamicQueryParameters: false
  1530. AllowDynamicFormParameters: false
  1531. IsMultiContentStreaming: false
  1532. /product/comment:
  1533. post:
  1534. description: ''
  1535. summary: Okomentovat produkt
  1536. tags:
  1537. - Produkty
  1538. operationId: ProductCommentPost
  1539. produces:
  1540. - application/json
  1541. parameters: []
  1542. responses:
  1543. 200:
  1544. description: ''
  1545. schema:
  1546. $ref: '#/definitions/OkomentovatProduktResponse'
  1547. examples:
  1548. application/json:
  1549. status: not-implemented
  1550. message: Není implementováno
  1551. data: {}
  1552. x-unitTests:
  1553. - request:
  1554. method: POST
  1555. uri: /product/comment
  1556. expectedResponse:
  1557. x-allowExtraHeaders: true
  1558. x-bodyMatchMode: RAW
  1559. x-arrayOrderedMatching: false
  1560. x-arrayCheckCount: false
  1561. x-matchResponseSchema: true
  1562. headers:
  1563. Content-Type: application/json
  1564. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1565. x-testShouldPass: true
  1566. x-testEnabled: true
  1567. x-testName: Okomentovat produkt1
  1568. x-testDescription: Testcase for testing endpoint Okomentovat produkt
  1569. x-operation-settings:
  1570. CollectParameters: false
  1571. AllowDynamicQueryParameters: false
  1572. AllowDynamicFormParameters: false
  1573. IsMultiContentStreaming: false
  1574. /product/bargain:
  1575. post:
  1576. description: ''
  1577. summary: Smlouvat o ceně produktu
  1578. tags:
  1579. - Produkty
  1580. operationId: ProductBargainPost
  1581. produces:
  1582. - application/json
  1583. parameters: []
  1584. responses:
  1585. 200:
  1586. description: ''
  1587. schema:
  1588. $ref: '#/definitions/SmlouvatOCeněProduktuResponse'
  1589. examples:
  1590. application/json:
  1591. status: not-implemented
  1592. message: Není implementováno
  1593. data: {}
  1594. x-unitTests:
  1595. - request:
  1596. method: POST
  1597. uri: /product/bargain
  1598. expectedResponse:
  1599. x-allowExtraHeaders: true
  1600. x-bodyMatchMode: RAW
  1601. x-arrayOrderedMatching: false
  1602. x-arrayCheckCount: false
  1603. x-matchResponseSchema: true
  1604. headers:
  1605. Content-Type: application/json
  1606. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1607. x-testShouldPass: true
  1608. x-testEnabled: true
  1609. x-testName: Smlouvat o ceně produktu1
  1610. x-testDescription: Testcase for testing endpoint Smlouvat o ceně produktu
  1611. x-operation-settings:
  1612. CollectParameters: false
  1613. AllowDynamicQueryParameters: false
  1614. AllowDynamicFormParameters: false
  1615. IsMultiContentStreaming: false
  1616. /favorite-products:
  1617. get:
  1618. description: ''
  1619. summary: Získat oblíbené produkty
  1620. tags:
  1621. - Produkty
  1622. operationId: FavoriteProductsGet
  1623. produces:
  1624. - application/json
  1625. parameters: []
  1626. responses:
  1627. 200:
  1628. description: ''
  1629. schema:
  1630. $ref: '#/definitions/ZískatOblíbenéProduktyResponse'
  1631. examples:
  1632. application/json:
  1633. status: not-implemented
  1634. message: Není implementováno
  1635. data: {}
  1636. x-unitTests:
  1637. - request:
  1638. method: GET
  1639. uri: /favorite-products
  1640. expectedResponse:
  1641. x-allowExtraHeaders: true
  1642. x-bodyMatchMode: RAW
  1643. x-arrayOrderedMatching: false
  1644. x-arrayCheckCount: false
  1645. x-matchResponseSchema: true
  1646. headers:
  1647. Content-Type: application/json
  1648. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1649. x-testShouldPass: true
  1650. x-testEnabled: true
  1651. x-testName: Získat oblíbené produkty1
  1652. x-testDescription: Testcase for testing endpoint Získat oblíbené produkty
  1653. x-operation-settings:
  1654. CollectParameters: false
  1655. AllowDynamicQueryParameters: false
  1656. AllowDynamicFormParameters: false
  1657. IsMultiContentStreaming: false
  1658. /favorite-product:
  1659. get:
  1660. description: ''
  1661. summary: Získat informace o oblíbeném produktu
  1662. tags:
  1663. - Produkty
  1664. operationId: FavoriteProductGet
  1665. produces:
  1666. - application/json
  1667. parameters: []
  1668. responses:
  1669. 200:
  1670. description: ''
  1671. schema:
  1672. $ref: '#/definitions/ZískatInformaceOOblíbenémProduktuResponse'
  1673. examples:
  1674. application/json:
  1675. status: not-implemented
  1676. message: Není implementováno
  1677. data: {}
  1678. x-unitTests:
  1679. - request:
  1680. method: GET
  1681. uri: /favorite-product
  1682. expectedResponse:
  1683. x-allowExtraHeaders: true
  1684. x-bodyMatchMode: RAW
  1685. x-arrayOrderedMatching: false
  1686. x-arrayCheckCount: false
  1687. x-matchResponseSchema: true
  1688. headers:
  1689. Content-Type: application/json
  1690. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1691. x-testShouldPass: true
  1692. x-testEnabled: true
  1693. x-testName: Získat informace o oblíbeném produktu1
  1694. x-testDescription: Testcase for testing endpoint Získat informace o oblíbeném produktu
  1695. x-operation-settings:
  1696. CollectParameters: false
  1697. AllowDynamicQueryParameters: false
  1698. AllowDynamicFormParameters: false
  1699. IsMultiContentStreaming: false
  1700. put:
  1701. description: ''
  1702. summary: Přidat produkt do oblíbených
  1703. tags:
  1704. - Produkty
  1705. operationId: FavoriteProductPut
  1706. produces:
  1707. - application/json
  1708. parameters: []
  1709. responses:
  1710. 200:
  1711. description: ''
  1712. schema:
  1713. $ref: '#/definitions/PřidatProduktDoOblíbenýchResponse'
  1714. examples:
  1715. application/json:
  1716. status: not-implemented
  1717. message: Není implementováno
  1718. data: {}
  1719. x-unitTests:
  1720. - request:
  1721. method: PUT
  1722. uri: /favorite-product
  1723. expectedResponse:
  1724. x-allowExtraHeaders: true
  1725. x-bodyMatchMode: RAW
  1726. x-arrayOrderedMatching: false
  1727. x-arrayCheckCount: false
  1728. x-matchResponseSchema: true
  1729. headers:
  1730. Content-Type: application/json
  1731. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1732. x-testShouldPass: true
  1733. x-testEnabled: true
  1734. x-testName: Přidat produkt do oblíbených1
  1735. x-testDescription: Testcase for testing endpoint Přidat produkt do oblíbených
  1736. x-operation-settings:
  1737. CollectParameters: false
  1738. AllowDynamicQueryParameters: false
  1739. AllowDynamicFormParameters: false
  1740. IsMultiContentStreaming: false
  1741. /notifications:
  1742. get:
  1743. description: ''
  1744. summary: Získat upozornění
  1745. tags:
  1746. - Upozornění
  1747. operationId: NotificationsGet
  1748. produces:
  1749. - application/json
  1750. parameters: []
  1751. responses:
  1752. 200:
  1753. description: ''
  1754. schema:
  1755. $ref: '#/definitions/ZískatUpozorněníResponse'
  1756. examples:
  1757. application/json:
  1758. status: not-implemented
  1759. message: Není implementováno
  1760. data: {}
  1761. x-unitTests:
  1762. - request:
  1763. method: GET
  1764. uri: /notifications
  1765. expectedResponse:
  1766. x-allowExtraHeaders: true
  1767. x-bodyMatchMode: RAW
  1768. x-arrayOrderedMatching: false
  1769. x-arrayCheckCount: false
  1770. x-matchResponseSchema: true
  1771. headers:
  1772. Content-Type: application/json
  1773. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1774. x-testShouldPass: true
  1775. x-testEnabled: true
  1776. x-testName: Získat upozornění1
  1777. x-testDescription: Testcase for testing endpoint Získat upozornění
  1778. x-operation-settings:
  1779. CollectParameters: false
  1780. AllowDynamicQueryParameters: false
  1781. AllowDynamicFormParameters: false
  1782. IsMultiContentStreaming: false
  1783. /notifications/read:
  1784. get:
  1785. description: ''
  1786. summary: Označit upozornění jako přečtené
  1787. tags:
  1788. - Upozornění
  1789. operationId: NotificationsReadGet
  1790. produces:
  1791. - application/json
  1792. parameters: []
  1793. responses:
  1794. 200:
  1795. description: ''
  1796. schema:
  1797. $ref: '#/definitions/OznačitUpozorněníJakoPřečtenéResponse'
  1798. examples:
  1799. application/json:
  1800. status: not-implemented
  1801. message: Není implementováno
  1802. data: {}
  1803. x-unitTests:
  1804. - request:
  1805. method: GET
  1806. uri: /notifications/read
  1807. expectedResponse:
  1808. x-allowExtraHeaders: true
  1809. x-bodyMatchMode: RAW
  1810. x-arrayOrderedMatching: false
  1811. x-arrayCheckCount: false
  1812. x-matchResponseSchema: true
  1813. headers:
  1814. Content-Type: application/json
  1815. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1816. x-testShouldPass: true
  1817. x-testEnabled: true
  1818. x-testName: Označit upozornění jako přečtené1
  1819. x-testDescription: Testcase for testing endpoint Označit upozornění jako přečtené
  1820. x-operation-settings:
  1821. CollectParameters: false
  1822. AllowDynamicQueryParameters: false
  1823. AllowDynamicFormParameters: false
  1824. IsMultiContentStreaming: false
  1825. /notifications/old:
  1826. get:
  1827. description: ''
  1828. summary: Označit upozornění jako zastaralé
  1829. tags:
  1830. - Upozornění
  1831. operationId: NotificationsOldGet
  1832. produces:
  1833. - application/json
  1834. parameters: []
  1835. responses:
  1836. 200:
  1837. description: ''
  1838. schema:
  1839. $ref: '#/definitions/OznačitUpozorněníJakoZastaraléResponse'
  1840. examples:
  1841. application/json:
  1842. status: not-implemented
  1843. message: Není implementováno
  1844. data: {}
  1845. x-unitTests:
  1846. - request:
  1847. method: GET
  1848. uri: /notifications/old
  1849. expectedResponse:
  1850. x-allowExtraHeaders: true
  1851. x-bodyMatchMode: RAW
  1852. x-arrayOrderedMatching: false
  1853. x-arrayCheckCount: false
  1854. x-matchResponseSchema: true
  1855. headers:
  1856. Content-Type: application/json
  1857. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1858. x-testShouldPass: true
  1859. x-testEnabled: true
  1860. x-testName: Označit upozornění jako zastaralé1
  1861. x-testDescription: Testcase for testing endpoint Označit upozornění jako zastaralé
  1862. x-operation-settings:
  1863. CollectParameters: false
  1864. AllowDynamicQueryParameters: false
  1865. AllowDynamicFormParameters: false
  1866. IsMultiContentStreaming: false
  1867. /notification:
  1868. put:
  1869. description: ''
  1870. summary: Přidat upozornění
  1871. tags:
  1872. - Upozornění
  1873. operationId: NotificationPut
  1874. produces:
  1875. - application/json
  1876. parameters: []
  1877. responses:
  1878. 200:
  1879. description: ''
  1880. schema:
  1881. $ref: '#/definitions/PřidatUpozorněníResponse'
  1882. examples:
  1883. application/json:
  1884. status: not-implemented
  1885. message: Není implementováno
  1886. data: {}
  1887. x-unitTests:
  1888. - request:
  1889. method: PUT
  1890. uri: /notification
  1891. expectedResponse:
  1892. x-allowExtraHeaders: true
  1893. x-bodyMatchMode: RAW
  1894. x-arrayOrderedMatching: false
  1895. x-arrayCheckCount: false
  1896. x-matchResponseSchema: true
  1897. headers:
  1898. Content-Type: application/json
  1899. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1900. x-testShouldPass: true
  1901. x-testEnabled: true
  1902. x-testName: Přidat upozornění1
  1903. x-testDescription: Testcase for testing endpoint Přidat upozornění
  1904. x-operation-settings:
  1905. CollectParameters: false
  1906. AllowDynamicQueryParameters: false
  1907. AllowDynamicFormParameters: false
  1908. IsMultiContentStreaming: false
  1909. /loyality-points:
  1910. get:
  1911. description: ''
  1912. summary: Získat záznamy o loajálních bodech
  1913. tags:
  1914. - Věrnostní program
  1915. operationId: LoyalityPointsGet
  1916. produces:
  1917. - application/json
  1918. parameters: []
  1919. responses:
  1920. 200:
  1921. description: ''
  1922. schema:
  1923. $ref: '#/definitions/ZískatZáznamyOLoajálníchBodechResponse'
  1924. examples:
  1925. application/json:
  1926. status: not-implemented
  1927. message: Není implementováno
  1928. data: {}
  1929. x-unitTests:
  1930. - request:
  1931. method: GET
  1932. uri: /loyality-points
  1933. expectedResponse:
  1934. x-allowExtraHeaders: true
  1935. x-bodyMatchMode: RAW
  1936. x-arrayOrderedMatching: false
  1937. x-arrayCheckCount: false
  1938. x-matchResponseSchema: true
  1939. headers:
  1940. Content-Type: application/json
  1941. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1942. x-testShouldPass: true
  1943. x-testEnabled: true
  1944. x-testName: Získat záznamy o loajálních bodech1
  1945. x-testDescription: Testcase for testing endpoint Získat záznamy o loajálních bodech
  1946. x-operation-settings:
  1947. CollectParameters: false
  1948. AllowDynamicQueryParameters: false
  1949. AllowDynamicFormParameters: false
  1950. IsMultiContentStreaming: false
  1951. /loyality-point:
  1952. get:
  1953. description: ''
  1954. summary: Získat informace o záznamu loajálních bodů
  1955. tags:
  1956. - Věrnostní program
  1957. operationId: LoyalityPointGet
  1958. produces:
  1959. - application/json
  1960. parameters: []
  1961. responses:
  1962. 200:
  1963. description: ''
  1964. schema:
  1965. $ref: '#/definitions/ZískatInformaceOZáznamuLoajálníchBodůResponse'
  1966. examples:
  1967. application/json:
  1968. status: not-implemented
  1969. message: Není implementováno
  1970. data: {}
  1971. x-unitTests:
  1972. - request:
  1973. method: GET
  1974. uri: /loyality-point
  1975. expectedResponse:
  1976. x-allowExtraHeaders: true
  1977. x-bodyMatchMode: RAW
  1978. x-arrayOrderedMatching: false
  1979. x-arrayCheckCount: false
  1980. x-matchResponseSchema: true
  1981. headers:
  1982. Content-Type: application/json
  1983. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  1984. x-testShouldPass: true
  1985. x-testEnabled: true
  1986. x-testName: Získat informace o záznamu loajálních bodů1
  1987. x-testDescription: Testcase for testing endpoint Získat informace o záznamu loajálních bodů
  1988. x-operation-settings:
  1989. CollectParameters: false
  1990. AllowDynamicQueryParameters: false
  1991. AllowDynamicFormParameters: false
  1992. IsMultiContentStreaming: false
  1993. /branches:
  1994. get:
  1995. description: ''
  1996. summary: Získat prodejny
  1997. tags:
  1998. - Prodejny
  1999. operationId: BranchesGet
  2000. produces:
  2001. - application/json
  2002. parameters: []
  2003. responses:
  2004. 200:
  2005. description: ''
  2006. schema:
  2007. $ref: '#/definitions/ZískatProdejnyResponse'
  2008. examples:
  2009. application/json:
  2010. status: not-implemented
  2011. message: Není implementováno
  2012. data: {}
  2013. x-unitTests:
  2014. - request:
  2015. method: GET
  2016. uri: /branches
  2017. expectedResponse:
  2018. x-allowExtraHeaders: true
  2019. x-bodyMatchMode: RAW
  2020. x-arrayOrderedMatching: false
  2021. x-arrayCheckCount: false
  2022. x-matchResponseSchema: true
  2023. headers:
  2024. Content-Type: application/json
  2025. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2026. x-testShouldPass: true
  2027. x-testEnabled: true
  2028. x-testName: Získat prodejny1
  2029. x-testDescription: Testcase for testing endpoint Získat prodejny
  2030. x-operation-settings:
  2031. CollectParameters: false
  2032. AllowDynamicQueryParameters: false
  2033. AllowDynamicFormParameters: false
  2034. IsMultiContentStreaming: false
  2035. /branch:
  2036. get:
  2037. description: ''
  2038. summary: Získat informace o prodejně
  2039. tags:
  2040. - Prodejny
  2041. operationId: BranchGet
  2042. produces:
  2043. - application/json
  2044. parameters: []
  2045. responses:
  2046. 200:
  2047. description: ''
  2048. schema:
  2049. $ref: '#/definitions/ZískatInformaceOProdejněResponse'
  2050. examples:
  2051. application/json:
  2052. status: not-implemented
  2053. message: Není implementováno
  2054. data: {}
  2055. x-unitTests:
  2056. - request:
  2057. method: GET
  2058. uri: /branch
  2059. expectedResponse:
  2060. x-allowExtraHeaders: true
  2061. x-bodyMatchMode: RAW
  2062. x-arrayOrderedMatching: false
  2063. x-arrayCheckCount: false
  2064. x-matchResponseSchema: true
  2065. headers:
  2066. Content-Type: application/json
  2067. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2068. x-testShouldPass: true
  2069. x-testEnabled: true
  2070. x-testName: Získat informace o prodejně1
  2071. x-testDescription: Testcase for testing endpoint Získat informace o prodejně
  2072. x-operation-settings:
  2073. CollectParameters: false
  2074. AllowDynamicQueryParameters: false
  2075. AllowDynamicFormParameters: false
  2076. IsMultiContentStreaming: false
  2077. /recipes:
  2078. get:
  2079. description: ''
  2080. summary: Získat recepty
  2081. tags:
  2082. - Recepty
  2083. operationId: RecipesGet
  2084. produces:
  2085. - application/json
  2086. parameters: []
  2087. responses:
  2088. 200:
  2089. description: ''
  2090. schema:
  2091. $ref: '#/definitions/ZískatReceptyResponse'
  2092. examples:
  2093. application/json:
  2094. status: not-implemented
  2095. message: Není implementováno
  2096. data: {}
  2097. x-unitTests:
  2098. - request:
  2099. method: GET
  2100. uri: /recipes
  2101. expectedResponse:
  2102. x-allowExtraHeaders: true
  2103. x-bodyMatchMode: RAW
  2104. x-arrayOrderedMatching: false
  2105. x-arrayCheckCount: false
  2106. x-matchResponseSchema: true
  2107. headers:
  2108. Content-Type: application/json
  2109. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2110. x-testShouldPass: true
  2111. x-testEnabled: true
  2112. x-testName: Získat recepty1
  2113. x-testDescription: Testcase for testing endpoint Získat recepty
  2114. x-operation-settings:
  2115. CollectParameters: false
  2116. AllowDynamicQueryParameters: false
  2117. AllowDynamicFormParameters: false
  2118. IsMultiContentStreaming: false
  2119. /recipe:
  2120. get:
  2121. description: ''
  2122. summary: Získat informace o receptu
  2123. tags:
  2124. - Recepty
  2125. operationId: RecipeGet
  2126. produces:
  2127. - application/json
  2128. parameters: []
  2129. responses:
  2130. 200:
  2131. description: ''
  2132. schema:
  2133. $ref: '#/definitions/ZískatInformaceOReceptuResponse'
  2134. examples:
  2135. application/json:
  2136. status: not-implemented
  2137. message: Není implementováno
  2138. data: {}
  2139. x-unitTests:
  2140. - request:
  2141. method: GET
  2142. uri: /recipe
  2143. expectedResponse:
  2144. x-allowExtraHeaders: true
  2145. x-bodyMatchMode: RAW
  2146. x-arrayOrderedMatching: false
  2147. x-arrayCheckCount: false
  2148. x-matchResponseSchema: true
  2149. headers:
  2150. Content-Type: application/json
  2151. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2152. x-testShouldPass: true
  2153. x-testEnabled: true
  2154. x-testName: Získat informace o receptu1
  2155. x-testDescription: Testcase for testing endpoint Získat informace o receptu
  2156. x-operation-settings:
  2157. CollectParameters: false
  2158. AllowDynamicQueryParameters: false
  2159. AllowDynamicFormParameters: false
  2160. IsMultiContentStreaming: false
  2161. /recipe/rate:
  2162. post:
  2163. description: ''
  2164. summary: Ohodnotit recept
  2165. tags:
  2166. - Recepty
  2167. operationId: RecipeRatePost
  2168. produces:
  2169. - application/json
  2170. parameters: []
  2171. responses:
  2172. 200:
  2173. description: ''
  2174. schema:
  2175. $ref: '#/definitions/OhodnotitReceptResponse'
  2176. examples:
  2177. application/json:
  2178. status: not-implemented
  2179. message: Není implementováno
  2180. data: {}
  2181. x-unitTests:
  2182. - request:
  2183. method: POST
  2184. uri: /recipe/rate
  2185. expectedResponse:
  2186. x-allowExtraHeaders: true
  2187. x-bodyMatchMode: RAW
  2188. x-arrayOrderedMatching: false
  2189. x-arrayCheckCount: false
  2190. x-matchResponseSchema: true
  2191. headers:
  2192. Content-Type: application/json
  2193. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2194. x-testShouldPass: true
  2195. x-testEnabled: true
  2196. x-testName: Ohodnotit recept1
  2197. x-testDescription: Testcase for testing endpoint Ohodnotit recept
  2198. x-operation-settings:
  2199. CollectParameters: false
  2200. AllowDynamicQueryParameters: false
  2201. AllowDynamicFormParameters: false
  2202. IsMultiContentStreaming: false
  2203. /recipe/comment:
  2204. post:
  2205. description: ''
  2206. summary: Okomentovat recept
  2207. tags:
  2208. - Recepty
  2209. operationId: RecipeCommentPost
  2210. produces:
  2211. - application/json
  2212. parameters: []
  2213. responses:
  2214. 200:
  2215. description: ''
  2216. schema:
  2217. $ref: '#/definitions/OkomentovatReceptResponse'
  2218. examples:
  2219. application/json:
  2220. status: not-implemented
  2221. message: Není implementováno
  2222. data: {}
  2223. x-unitTests:
  2224. - request:
  2225. method: POST
  2226. uri: /recipe/comment
  2227. expectedResponse:
  2228. x-allowExtraHeaders: true
  2229. x-bodyMatchMode: RAW
  2230. x-arrayOrderedMatching: false
  2231. x-arrayCheckCount: false
  2232. x-matchResponseSchema: true
  2233. headers:
  2234. Content-Type: application/json
  2235. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2236. x-testShouldPass: true
  2237. x-testEnabled: true
  2238. x-testName: Okomentovat recept1
  2239. x-testDescription: Testcase for testing endpoint Okomentovat recept
  2240. x-operation-settings:
  2241. CollectParameters: false
  2242. AllowDynamicQueryParameters: false
  2243. AllowDynamicFormParameters: false
  2244. IsMultiContentStreaming: false
  2245. /geolocation/record-location:
  2246. get:
  2247. description: ''
  2248. summary: Zaznamenat pozici
  2249. tags:
  2250. - Geolokace
  2251. operationId: GeolocationRecordLocationGet
  2252. produces:
  2253. - application/json
  2254. parameters: []
  2255. responses:
  2256. 200:
  2257. description: ''
  2258. schema:
  2259. $ref: '#/definitions/ZaznamenatPoziciResponse'
  2260. examples:
  2261. application/json:
  2262. status: not-implemented
  2263. message: Není implementováno
  2264. data: {}
  2265. x-unitTests:
  2266. - request:
  2267. method: GET
  2268. uri: /geolocation/record-location
  2269. expectedResponse:
  2270. x-allowExtraHeaders: true
  2271. x-bodyMatchMode: RAW
  2272. x-arrayOrderedMatching: false
  2273. x-arrayCheckCount: false
  2274. x-matchResponseSchema: true
  2275. headers:
  2276. Content-Type: application/json
  2277. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2278. x-testShouldPass: true
  2279. x-testEnabled: true
  2280. x-testName: Zaznamenat pozici1
  2281. x-testDescription: Testcase for testing endpoint Zaznamenat pozici
  2282. x-operation-settings:
  2283. CollectParameters: false
  2284. AllowDynamicQueryParameters: false
  2285. AllowDynamicFormParameters: false
  2286. IsMultiContentStreaming: false
  2287. /geolocation/record-aps:
  2288. get:
  2289. description: ''
  2290. summary: Zaznamenat informace o dostupných AP
  2291. tags:
  2292. - Geolokace
  2293. operationId: GeolocationRecordApsGet
  2294. produces:
  2295. - application/json
  2296. parameters: []
  2297. responses:
  2298. 200:
  2299. description: ''
  2300. schema:
  2301. $ref: '#/definitions/ZaznamenatInformaceODostupnýchApResponse'
  2302. examples:
  2303. application/json:
  2304. status: not-implemented
  2305. message: Není implementováno
  2306. data: {}
  2307. x-unitTests:
  2308. - request:
  2309. method: GET
  2310. uri: /geolocation/record-aps
  2311. expectedResponse:
  2312. x-allowExtraHeaders: true
  2313. x-bodyMatchMode: RAW
  2314. x-arrayOrderedMatching: false
  2315. x-arrayCheckCount: false
  2316. x-matchResponseSchema: true
  2317. headers:
  2318. Content-Type: application/json
  2319. body: ' { "status": "not-implemented", "message": "Není implementováno", "data": {} }'
  2320. x-testShouldPass: true
  2321. x-testEnabled: true
  2322. x-testName: Zaznamenat informace o dostupných AP1
  2323. x-testDescription: Testcase for testing endpoint Zaznamenat informace o dostupných AP
  2324. x-operation-settings:
  2325. CollectParameters: false
  2326. AllowDynamicQueryParameters: false
  2327. AllowDynamicFormParameters: false
  2328. IsMultiContentStreaming: false
  2329. definitions:
  2330. WorldResponse:
  2331. title: World response
  2332. example:
  2333. Hello: world
  2334. type: object
  2335. properties:
  2336. Hello:
  2337. description: ''
  2338. example: world
  2339. type: string
  2340. required:
  2341. - Hello
  2342. PřihlásitUživateleRequest:
  2343. title: Přihlásit uživatele request
  2344. type: object
  2345. properties:
  2346. username:
  2347. description: ''
  2348. example: misak113
  2349. type: string
  2350. password:
  2351. description: ''
  2352. example: testheslo
  2353. type: string
  2354. required:
  2355. - username
  2356. - password
  2357. PřihlásitUživateleResponse:
  2358. title: Přihlásit uživatele response
  2359. example:
  2360. status: loggedIn
  2361. message: Uživatel přihlášen
  2362. time: 135489548
  2363. data:
  2364. accessToken: 77d450bbbd948bb44cfa68a21a6c84be0b0a48ea953d2b4214a7d4a74c06ed7c
  2365. user_oid: 512e6a85dea8ace96a5855b5
  2366. type: object
  2367. properties:
  2368. status:
  2369. description: ''
  2370. example: loggedIn
  2371. type: string
  2372. message:
  2373. description: ''
  2374. example: Uživatel přihlášen
  2375. type: string
  2376. time:
  2377. description: ''
  2378. example: 135489548
  2379. type: integer
  2380. format: int32
  2381. data:
  2382. description: ''
  2383. example:
  2384. accessToken: 77d450bbbd948bb44cfa68a21a6c84be0b0a48ea953d2b4214a7d4a74c06ed7c
  2385. user_oid: 512e6a85dea8ace96a5855b5
  2386. type: object
  2387. required:
  2388. - status
  2389. - message
  2390. - time
  2391. - data
  2392. OdhlásitUživateleRequest:
  2393. title: Odhlásit uživatele request
  2394. type: object
  2395. properties:
  2396. username:
  2397. description: ''
  2398. example: misak113
  2399. type: string
  2400. accessToken:
  2401. description: ''
  2402. example: 77d450bbbd948bb44cfa68a21a6c84be0b0a48ea953d2b4214a7d4a74c06ed7c
  2403. type: string
  2404. required:
  2405. - username
  2406. - accessToken
  2407. OdhlásitUživateleResponse:
  2408. title: Odhlásit uživatele response
  2409. example:
  2410. status: loggedOff
  2411. message: Uživatel odhlášen
  2412. time: 135489548
  2413. data: {}
  2414. type: object
  2415. properties:
  2416. status:
  2417. description: ''
  2418. example: loggedOff
  2419. type: string
  2420. message:
  2421. description: ''
  2422. example: Uživatel odhlášen
  2423. type: string
  2424. time:
  2425. description: ''
  2426. example: 135489548
  2427. type: integer
  2428. format: int32
  2429. data:
  2430. description: ''
  2431. example: {}
  2432. type: object
  2433. required:
  2434. - status
  2435. - message
  2436. - time
  2437. - data
  2438. RegistrovatUživateleRequest:
  2439. title: Registrovat uživatele request
  2440. type: object
  2441. properties:
  2442. username:
  2443. description: ''
  2444. example: misak113
  2445. type: string
  2446. password:
  2447. description: ''
  2448. example: mojeheslo
  2449. type: string
  2450. required:
  2451. - username
  2452. - password
  2453. RegistrovatUživateleResponse:
  2454. title: Registrovat uživatele response
  2455. example:
  2456. status: registered
  2457. message: Uživatel byl zaregistrován
  2458. time: 135489548
  2459. data: {}
  2460. type: object
  2461. properties:
  2462. status:
  2463. description: ''
  2464. example: registered
  2465. type: string
  2466. message:
  2467. description: ''
  2468. example: Uživatel byl zaregistrován
  2469. type: string
  2470. time:
  2471. description: ''
  2472. example: 135489548
  2473. type: integer
  2474. format: int32
  2475. data:
  2476. description: ''
  2477. example: {}
  2478. type: object
  2479. required:
  2480. - status
  2481. - message
  2482. - time
  2483. - data
  2484. ZískatInformaceOUživateliResponse:
  2485. title: Získat informace o uživateli response
  2486. example:
  2487. status: returned
  2488. message: Uživatel vrácen
  2489. data:
  2490. user:
  2491. _id:
  2492. $oid: 512e6a7bdea8ace96a5855f4
  2493. forename: Michael
  2494. surname: Žabka
  2495. email: zabka.michael@seznam.cz
  2496. authenticates:
  2497. - type: username
  2498. identity: misak113
  2499. verification:
  2500. type: object
  2501. properties:
  2502. status:
  2503. description: ''
  2504. example: returned
  2505. type: string
  2506. message:
  2507. description: ''
  2508. example: Uživatel vrácen
  2509. type: string
  2510. data:
  2511. description: ''
  2512. example:
  2513. user:
  2514. _id:
  2515. $oid: 512e6a7bdea8ace96a5855f4
  2516. forename: Michael
  2517. surname: Žabka
  2518. email: zabka.michael@seznam.cz
  2519. authenticates:
  2520. - type: username
  2521. identity: misak113
  2522. verification:
  2523. type: object
  2524. required:
  2525. - status
  2526. - message
  2527. - data
  2528. ZískatNastaveníParametrůUživateleResponse:
  2529. title: Získat nastavení parametrů uživatele response
  2530. example:
  2531. status: returned
  2532. message: Nastavení vrácena
  2533. data:
  2534. localization.bluetooth: true
  2535. localization.gps: false
  2536. type: object
  2537. properties:
  2538. status:
  2539. description: ''
  2540. example: returned
  2541. type: string
  2542. message:
  2543. description: ''
  2544. example: Nastavení vrácena
  2545. type: string
  2546. data:
  2547. description: ''
  2548. example:
  2549. localization.bluetooth: true
  2550. localization.gps: false
  2551. type: object
  2552. required:
  2553. - status
  2554. - message
  2555. - data
  2556. NastavitParametrUživateleRequest:
  2557. title: Nastavit parametr uživatele request
  2558. type: object
  2559. properties:
  2560. localization.gps:
  2561. description: ''
  2562. example: true
  2563. type: boolean
  2564. required:
  2565. - localization.gps
  2566. NastavitParametrUživateleResponse:
  2567. title: Nastavit parametr uživatele response
  2568. example:
  2569. status: updated
  2570. message: Nastavení uložena
  2571. time: 135489548
  2572. data:
  2573. localization.gps: true
  2574. type: object
  2575. properties:
  2576. status:
  2577. description: ''
  2578. example: updated
  2579. type: string
  2580. message:
  2581. description: ''
  2582. example: Nastavení uložena
  2583. type: string
  2584. time:
  2585. description: ''
  2586. example: 135489548
  2587. type: integer
  2588. format: int32
  2589. data:
  2590. description: ''
  2591. example:
  2592. localization.gps: true
  2593. type: object
  2594. required:
  2595. - status
  2596. - message
  2597. - time
  2598. - data
  2599. ZískatSkupinyUživateleResponse:
  2600. title: Získat skupiny uživatele response
  2601. example:
  2602. status: returned
  2603. message: Skupiny vráceny
  2604. data:
  2605. - id: 1
  2606. name: Rodina
  2607. type: object
  2608. properties:
  2609. status:
  2610. description: ''
  2611. example: returned
  2612. type: string
  2613. message:
  2614. description: ''
  2615. example: Skupiny vráceny
  2616. type: string
  2617. data:
  2618. description: ''
  2619. example:
  2620. - id: 1
  2621. name: Rodina
  2622. type: array
  2623. items:
  2624. type: object
  2625. required:
  2626. - status
  2627. - message
  2628. - data
  2629. VyhledatSkupinyResponse:
  2630. title: Vyhledat skupiny response
  2631. example:
  2632. status: returned
  2633. message: Skupiny nalezeny
  2634. data:
  2635. - id: 2
  2636. name: Bonami.cz
  2637. - id: 3
  2638. name: Bonami.pl
  2639. type: object
  2640. properties:
  2641. status:
  2642. description: ''
  2643. example: returned
  2644. type: string
  2645. message:
  2646. description: ''
  2647. example: Skupiny nalezeny
  2648. type: string
  2649. data:
  2650. description: ''
  2651. example:
  2652. - id: 2
  2653. name: Bonami.cz
  2654. - id: 3
  2655. name: Bonami.pl
  2656. type: array
  2657. items:
  2658. type: object
  2659. required:
  2660. - status
  2661. - message
  2662. - data
  2663. ZískatInformaceOSkupiněResponse:
  2664. title: Získat informace o skupině response
  2665. example:
  2666. status: returned
  2667. message: Skupina vrácena
  2668. data:
  2669. id: 2
  2670. name: Bonami.cz
  2671. type: object
  2672. properties:
  2673. status:
  2674. description: ''
  2675. example: returned
  2676. type: string
  2677. message:
  2678. description: ''
  2679. example: Skupina vrácena
  2680. type: string
  2681. data:
  2682. description: ''
  2683. example:
  2684. id: 2
  2685. name: Bonami.cz
  2686. type: object
  2687. required:
  2688. - status
  2689. - message
  2690. - data
  2691. PožádatOČlenstvíVeSkupiněRequest:
  2692. title: Požádat o členství ve skupině request
  2693. type: object
  2694. properties:
  2695. groupId:
  2696. description: ''
  2697. example: 1
  2698. type: integer
  2699. format: int32
  2700. required:
  2701. - groupId
  2702. PožádatOČlenstvíVeSkupiněResponse:
  2703. title: Požádat o členství ve skupině response
  2704. example:
  2705. status: requested
  2706. message: Žádost odeslána
  2707. time: 135489548
  2708. data:
  2709. id: 1
  2710. name: Rodina
  2711. type: object
  2712. properties:
  2713. status:
  2714. description: ''
  2715. example: requested
  2716. type: string
  2717. message:
  2718. description: ''
  2719. example: Žádost odeslána
  2720. type: string
  2721. time:
  2722. description: ''
  2723. example: 135489548
  2724. type: integer
  2725. format: int32
  2726. data:
  2727. description: ''
  2728. example:
  2729. id: 1
  2730. name: Rodina
  2731. type: object
  2732. required:
  2733. - status
  2734. - message
  2735. - time
  2736. - data
  2737. ZískatŽádostiDoSkupinyResponse:
  2738. title: Získat žádosti do skupiny response
  2739. example:
  2740. status: returned
  2741. message: Žádosti vráceny
  2742. time: 135489548
  2743. data:
  2744. - userId: 2
  2745. groupId: 1
  2746. - userId: 1
  2747. groupId: 1
  2748. type: object
  2749. properties:
  2750. status:
  2751. description: ''
  2752. example: returned
  2753. type: string
  2754. message:
  2755. description: ''
  2756. example: Žádosti vráceny
  2757. type: string
  2758. time:
  2759. description: ''
  2760. example: 135489548
  2761. type: integer
  2762. format: int32
  2763. data:
  2764. description: ''
  2765. example:
  2766. - userId: 2
  2767. groupId: 1
  2768. - userId: 1
  2769. groupId: 1
  2770. type: array
  2771. items:
  2772. type: object
  2773. required:
  2774. - status
  2775. - message
  2776. - time
  2777. - data
  2778. Skupina žádostPožádat o členství ve skupině request:
  2779. title: Skupina žádost_Požádat o členství ve skupině request
  2780. type: object
  2781. properties:
  2782. userId:
  2783. description: ''
  2784. example: 1
  2785. type: integer
  2786. format: int32
  2787. groupId:
  2788. description: ''
  2789. example: 1
  2790. type: integer
  2791. format: int32
  2792. required:
  2793. - userId
  2794. - groupId
  2795. Skupina žádostPožádat o členství ve skupině response:
  2796. title: Skupina žádost_Požádat o členství ve skupině response
  2797. example:
  2798. status: accepted
  2799. message: Žádost schválena
  2800. time: 135489548
  2801. data:
  2802. userId: 1
  2803. groupId: 1
  2804. type: object
  2805. properties:
  2806. status:
  2807. description: ''
  2808. example: accepted
  2809. type: string
  2810. message:
  2811. description: ''
  2812. example: Žádost schválena
  2813. type: string
  2814. time:
  2815. description: ''
  2816. example: 135489548
  2817. type: integer
  2818. format: int32
  2819. data:
  2820. description: ''
  2821. example:
  2822. userId: 1
  2823. groupId: 1
  2824. type: object
  2825. required:
  2826. - status
  2827. - message
  2828. - time
  2829. - data
  2830. ZískatNabídkyUživateleResponse:
  2831. title: Získat nabídky uživatele response
  2832. example:
  2833. status: returned
  2834. message: Nabídky vráceny
  2835. data:
  2836. - _id:
  2837. $oid: 512e6a7bdea8ace96a5855b4
  2838. title: Lahodná rajčátka
  2839. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  2840. price: 18.539999999999999
  2841. currency: czk
  2842. date_start: 2013-01-02T12:00:00.0000000
  2843. date_end: 2013-01-18T18:59:59.0000000
  2844. qtyLimitTotal: 100
  2845. qtyLimitUser: 10
  2846. categories:
  2847. - personal
  2848. - common
  2849. product:
  2850. id: 146860
  2851. name: Rajčata
  2852. title: Rajčata Balení 250g
  2853. product_code: 566489138
  2854. short_description: ''
  2855. description:
  2856. quantity: 250
  2857. measure_unit: g
  2858. price: 25.800000000000001
  2859. currency: czk
  2860. image:
  2861. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2862. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  2863. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2864. images:
  2865. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  2866. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  2867. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  2868. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  2869. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  2870. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  2871. priority: 0.89041499999999996
  2872. image:
  2873. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2874. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  2875. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2876. images:
  2877. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  2878. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  2879. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2880. - _id:
  2881. $oid: 512e6a85dea8ace96a5855b5
  2882. title: Bílá čokoláda
  2883. description: Čokoláda co se rozplývá na jazyku!
  2884. price: 42.890000000000001
  2885. currency: czk
  2886. date_start: 2012-11-12T12:00:00.0000000
  2887. date_end: 2013-02-09T18:59:59.0000000
  2888. qtyLimitTotal:
  2889. qtyLimitUser: 100
  2890. categories:
  2891. - common
  2892. product:
  2893. id: 146861
  2894. name: Čokoláda
  2895. title: Bílá čokoláda 120g
  2896. product_code: 566489148
  2897. short_description: ''
  2898. description:
  2899. quantity: 120
  2900. measure_unit: g
  2901. price: 75.900000000000006
  2902. currency: czk
  2903. image:
  2904. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2905. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  2906. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2907. images:
  2908. - small: http://api.myretail.cz/images/chocolate-14861-1_small.png
  2909. medium: http://api.myretail.cz/images/chocolate-14861-1_medium.png
  2910. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  2911. priority: 0.45143699999999998
  2912. image:
  2913. small: http://yojoyfrozenyogurt.com/wp-content/uploads/catablog/thumbnails/white%20chocolate%20mousse.jpg
  2914. medium: http://www.friarsofkeswick.co.uk/files/imagecache/product_list/files/white_marzipan2_0.jpg
  2915. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  2916. images: []
  2917. type: object
  2918. properties:
  2919. status:
  2920. description: ''
  2921. example: returned
  2922. type: string
  2923. message:
  2924. description: ''
  2925. example: Nabídky vráceny
  2926. type: string
  2927. data:
  2928. description: ''
  2929. example:
  2930. - _id:
  2931. $oid: 512e6a7bdea8ace96a5855b4
  2932. title: Lahodná rajčátka
  2933. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  2934. price: 18.539999999999999
  2935. currency: czk
  2936. date_start: 2013-01-02T12:00:00.0000000
  2937. date_end: 2013-01-18T18:59:59.0000000
  2938. qtyLimitTotal: 100
  2939. qtyLimitUser: 10
  2940. categories:
  2941. - personal
  2942. - common
  2943. product:
  2944. id: 146860
  2945. name: Rajčata
  2946. title: Rajčata Balení 250g
  2947. product_code: 566489138
  2948. short_description: ''
  2949. description:
  2950. quantity: 250
  2951. measure_unit: g
  2952. price: 25.800000000000001
  2953. currency: czk
  2954. image:
  2955. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2956. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  2957. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2958. images:
  2959. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  2960. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  2961. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  2962. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  2963. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  2964. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  2965. priority: 0.89041499999999996
  2966. image:
  2967. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2968. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  2969. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2970. images:
  2971. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  2972. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  2973. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  2974. - _id:
  2975. $oid: 512e6a85dea8ace96a5855b5
  2976. title: Bílá čokoláda
  2977. description: Čokoláda co se rozplývá na jazyku!
  2978. price: 42.890000000000001
  2979. currency: czk
  2980. date_start: 2012-11-12T12:00:00.0000000
  2981. date_end: 2013-02-09T18:59:59.0000000
  2982. qtyLimitTotal:
  2983. qtyLimitUser: 100
  2984. categories:
  2985. - common
  2986. product:
  2987. id: 146861
  2988. name: Čokoláda
  2989. title: Bílá čokoláda 120g
  2990. product_code: 566489148
  2991. short_description: ''
  2992. description:
  2993. quantity: 120
  2994. measure_unit: g
  2995. price: 75.900000000000006
  2996. currency: czk
  2997. image:
  2998. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  2999. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  3000. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3001. images:
  3002. - small: http://api.myretail.cz/images/chocolate-14861-1_small.png
  3003. medium: http://api.myretail.cz/images/chocolate-14861-1_medium.png
  3004. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  3005. priority: 0.45143699999999998
  3006. image:
  3007. small: http://yojoyfrozenyogurt.com/wp-content/uploads/catablog/thumbnails/white%20chocolate%20mousse.jpg
  3008. medium: http://www.friarsofkeswick.co.uk/files/imagecache/product_list/files/white_marzipan2_0.jpg
  3009. large: http://api.myretail.cz/images/chocolate-14861-1_large.png
  3010. images: []
  3011. type: array
  3012. items:
  3013. type: object
  3014. required:
  3015. - status
  3016. - message
  3017. - data
  3018. ZískatInformaceONabídceResponse:
  3019. title: Získat informace o nabídce response
  3020. example:
  3021. status: returned
  3022. message: Nabídky vráceny
  3023. data:
  3024. _id:
  3025. $oid: 512e6a7bdea8ace96a5855b4
  3026. title: Lahodná rajčátka
  3027. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  3028. price: 18.539999999999999
  3029. currency: czk
  3030. date_start: 2013-01-02T12:00:00.0000000
  3031. date_end: 2013-01-18T18:59:59.0000000
  3032. qtyLimitTotal: 100
  3033. qtyLimitUser: 10
  3034. categories:
  3035. - personal
  3036. - common
  3037. product:
  3038. id: 146860
  3039. name: Rajčata
  3040. title: Rajčata Balení 250g
  3041. product_code: 566489138
  3042. short_description: ''
  3043. description:
  3044. quantity: 250
  3045. measure_unit: g
  3046. price: 25.800000000000001
  3047. currency: czk
  3048. image:
  3049. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  3050. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  3051. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3052. images:
  3053. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  3054. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  3055. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  3056. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  3057. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  3058. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  3059. priority: 0.89041499999999996
  3060. image:
  3061. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  3062. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  3063. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3064. images:
  3065. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  3066. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  3067. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3068. type: object
  3069. properties:
  3070. status:
  3071. description: ''
  3072. example: returned
  3073. type: string
  3074. message:
  3075. description: ''
  3076. example: Nabídky vráceny
  3077. type: string
  3078. data:
  3079. description: ''
  3080. example:
  3081. _id:
  3082. $oid: 512e6a7bdea8ace96a5855b4
  3083. title: Lahodná rajčátka
  3084. description: Nepřehlédněte nabídku čtvrt kila lahodných rajčat první jakosti
  3085. price: 18.539999999999999
  3086. currency: czk
  3087. date_start: 2013-01-02T12:00:00.0000000
  3088. date_end: 2013-01-18T18:59:59.0000000
  3089. qtyLimitTotal: 100
  3090. qtyLimitUser: 10
  3091. categories:
  3092. - personal
  3093. - common
  3094. product:
  3095. id: 146860
  3096. name: Rajčata
  3097. title: Rajčata Balení 250g
  3098. product_code: 566489138
  3099. short_description: ''
  3100. description:
  3101. quantity: 250
  3102. measure_unit: g
  3103. price: 25.800000000000001
  3104. currency: czk
  3105. image:
  3106. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  3107. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  3108. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3109. images:
  3110. - small: http://api.myretail.cz/images/tomate-250g-14860-1_small.png
  3111. medium: http://api.myretail.cz/images/tomate-250g-14860-1_medium.png
  3112. large: http://api.myretail.cz/images/tomate-250g-14860-1_large.png
  3113. - small: http://api.myretail.cz/images/tomate-250g-14860-2_small.png
  3114. medium: http://api.myretail.cz/images/tomate-250g-14860-2_medium.png
  3115. large: http://api.myretail.cz/images/tomate-250g-14860-2_large.png
  3116. priority: 0.89041499999999996
  3117. image:
  3118. small: http://img.weiku.com/IMG/2010/11/26/1/product/36_38_tomato_paste17318_s.jpg
  3119. medium: http://www.countryliving.com/cm/countryliving/images/spicy-tomato-jam-3761-200.jpg
  3120. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3121. images:
  3122. - small: http://api.myretail.cz/images/super_tomate-250g-14860-1_small.png
  3123. medium: http://api.myretail.cz/images/super_tomate-250g-14860-1_medium.png
  3124. large: http://api.myretail.cz/imagessuper_tomate-250g-14860-1_large.png
  3125. type: object
  3126. required:
  3127. - status
  3128. - message
  3129. - data
  3130. OdmítnoutNabídkuRequest:
  3131. title: Odmítnout nabídku request
  3132. type: object
  3133. properties:
  3134. offerId:
  3135. description: ''
  3136. example: 1
  3137. type: integer
  3138. format: int32
  3139. required:
  3140. - offerId
  3141. OdmítnoutNabídkuResponse:
  3142. title: Odmítnout nabídku response
  3143. example:
  3144. status: unwanted
  3145. message: Nabídka označena jako nechtěná
  3146. data: {}
  3147. type: object
  3148. properties:
  3149. status:
  3150. description: ''
  3151. example: unwanted
  3152. type: string
  3153. message:
  3154. description: ''
  3155. example: Nabídka označena jako nechtěná
  3156. type: string
  3157. data:
  3158. description: ''
  3159. example: {}
  3160. type: object
  3161. required:
  3162. - status
  3163. - message
  3164. - data
  3165. ZískatSeriálovéNabídkyResponse:
  3166. title: Získat seriálové nabídky response
  3167. example:
  3168. status: not-implemented
  3169. message: Není implementováno
  3170. data: {}
  3171. type: object
  3172. properties:
  3173. status:
  3174. description: ''
  3175. example: not-implemented
  3176. type: string
  3177. message:
  3178. description: ''
  3179. example: Není implementováno
  3180. type: string
  3181. data:
  3182. description: ''
  3183. example: {}
  3184. type: object
  3185. required:
  3186. - status
  3187. - message
  3188. - data
  3189. ZískatInformaceOSeriálovéNabídceResponse:
  3190. title: Získat informace o seriálové nabídce response
  3191. example:
  3192. status: not-implemented
  3193. message: Není implementováno
  3194. data: {}
  3195. type: object
  3196. properties:
  3197. status:
  3198. description: ''
  3199. example: not-implemented
  3200. type: string
  3201. message:
  3202. description: ''
  3203. example: Není implementováno
  3204. type: string
  3205. data:
  3206. description: ''
  3207. example: {}
  3208. type: object
  3209. required:
  3210. - status
  3211. - message
  3212. - data
  3213. OdmítnoutSeriálovouNabídkuResponse:
  3214. title: Odmítnout seriálovou nabídku response
  3215. example:
  3216. status: not-implemented
  3217. message: Není implementováno
  3218. data: {}
  3219. type: object
  3220. properties:
  3221. status:
  3222. description: ''
  3223. example: not-implemented
  3224. type: string
  3225. message:
  3226. description: ''
  3227. example: Není implementováno
  3228. type: string
  3229. data:
  3230. description: ''
  3231. example: {}
  3232. type: object
  3233. required:
  3234. - status
  3235. - message
  3236. - data
  3237. ZískatNákupyUživateleResponse:
  3238. title: Získat nákupy uživatele response
  3239. example:
  3240. status: not-implemented
  3241. message: Není implementováno
  3242. data: {}
  3243. type: object
  3244. properties:
  3245. status:
  3246. description: ''
  3247. example: not-implemented
  3248. type: string
  3249. message:
  3250. description: ''
  3251. example: Není implementováno
  3252. type: string
  3253. data:
  3254. description: ''
  3255. example: {}
  3256. type: object
  3257. required:
  3258. - status
  3259. - message
  3260. - data
  3261. ZískatInformaceONákupuResponse:
  3262. title: Získat informace o nákupu response
  3263. example:
  3264. status: not-implemented
  3265. message: Není implementováno
  3266. data: {}
  3267. type: object
  3268. properties:
  3269. status:
  3270. description: ''
  3271. example: not-implemented
  3272. type: string
  3273. message:
  3274. description: ''
  3275. example: Není implementováno
  3276. type: string
  3277. data:
  3278. description: ''
  3279. example: {}
  3280. type: object
  3281. required:
  3282. - status
  3283. - message
  3284. - data
  3285. ZískatNákupníSeznamyResponse:
  3286. title: Získat nákupní seznamy response
  3287. example:
  3288. status: not-implemented
  3289. message: Není implementováno
  3290. data: {}
  3291. type: object
  3292. properties:
  3293. status:
  3294. description: ''
  3295. example: not-implemented
  3296. type: string
  3297. message:
  3298. description: ''
  3299. example: Není implementováno
  3300. type: string
  3301. data:
  3302. description: ''
  3303. example: {}
  3304. type: object
  3305. required:
  3306. - status
  3307. - message
  3308. - data
  3309. ZískatInformaceONákupnímSeznamuResponse:
  3310. title: Získat informace o nákupním seznamu response
  3311. example:
  3312. status: not-implemented
  3313. message: Není implementováno
  3314. data: {}
  3315. type: object
  3316. properties:
  3317. status:
  3318. description: ''
  3319. example: not-implemented
  3320. type: string
  3321. message:
  3322. description: ''
  3323. example: Není implementováno
  3324. type: string
  3325. data:
  3326. description: ''
  3327. example: {}
  3328. type: object
  3329. required:
  3330. - status
  3331. - message
  3332. - data
  3333. Vytvořit/uložitNákupníSeznamResponse:
  3334. title: Vytvořit/Uložit nákupní seznam response
  3335. example:
  3336. status: not-implemented
  3337. message: Není implementováno
  3338. data: {}
  3339. type: object
  3340. properties:
  3341. status:
  3342. description: ''
  3343. example: not-implemented
  3344. type: string
  3345. message:
  3346. description: ''
  3347. example: Není implementováno
  3348. type: string
  3349. data:
  3350. description: ''
  3351. example: {}
  3352. type: object
  3353. required:
  3354. - status
  3355. - message
  3356. - data
  3357. OdstranitNákupníSeznamResponse:
  3358. title: Odstranit nákupní seznam response
  3359. example:
  3360. status: not-implemented
  3361. message: Není implementováno
  3362. data: {}
  3363. type: object
  3364. properties:
  3365. status:
  3366. description: ''
  3367. example: not-implemented
  3368. type: string
  3369. message:
  3370. description: ''
  3371. example: Není implementováno
  3372. type: string
  3373. data:
  3374. description: ''
  3375. example: {}
  3376. type: object
  3377. required:
  3378. - status
  3379. - message
  3380. - data
  3381. ObnovitOdstraněnýNákupníSeznamResponse:
  3382. title: Obnovit odstraněný nákupní seznam response
  3383. example:
  3384. status: not-implemented
  3385. message: Není implementováno
  3386. data: {}
  3387. type: object
  3388. properties:
  3389. status:
  3390. description: ''
  3391. example: not-implemented
  3392. type: string
  3393. message:
  3394. description: ''
  3395. example: Není implementováno
  3396. type: string
  3397. data:
  3398. description: ''
  3399. example: {}
  3400. type: object
  3401. required:
  3402. - status
  3403. - message
  3404. - data
  3405. PřidatProduktDoNákupníhoSeznamuResponse:
  3406. title: Přidat produkt do nákupního seznamu response
  3407. example:
  3408. status: not-implemented
  3409. message: Není implementováno
  3410. data: {}
  3411. type: object
  3412. properties:
  3413. status:
  3414. description: ''
  3415. example: not-implemented
  3416. type: string
  3417. message:
  3418. description: ''
  3419. example: Není implementováno
  3420. type: string
  3421. data:
  3422. description: ''
  3423. example: {}
  3424. type: object
  3425. required:
  3426. - status
  3427. - message
  3428. - data
  3429. VložitKomplementyDoNákupníhoSeznamuResponse:
  3430. title: Vložit komplementy do nákupního seznamu response
  3431. example:
  3432. status: not-implemented
  3433. message: Není implementováno
  3434. data: {}
  3435. type: object
  3436. properties:
  3437. status:
  3438. description: ''
  3439. example: not-implemented
  3440. type: string
  3441. message:
  3442. description: ''
  3443. example: Není implementováno
  3444. type: string
  3445. data:
  3446. description: ''
  3447. example: {}
  3448. type: object
  3449. required:
  3450. - status
  3451. - message
  3452. - data
  3453. VytvořitNákupníSeznamZReceptuResponse:
  3454. title: Vytvořit nákupní seznam z receptu response
  3455. example:
  3456. status: not-implemented
  3457. message: Není implementováno
  3458. data: {}
  3459. type: object
  3460. properties:
  3461. status:
  3462. description: ''
  3463. example: not-implemented
  3464. type: string
  3465. message:
  3466. description: ''
  3467. example: Není implementováno
  3468. type: string
  3469. data:
  3470. description: ''
  3471. example: {}
  3472. type: object
  3473. required:
  3474. - status
  3475. - message
  3476. - data
  3477. ZískatProduktyResponse:
  3478. title: Získat produkty response
  3479. example:
  3480. status: not-implemented
  3481. message: Není implementováno
  3482. data: {}
  3483. type: object
  3484. properties:
  3485. status:
  3486. description: ''
  3487. example: not-implemented
  3488. type: string
  3489. message:
  3490. description: ''
  3491. example: Není implementováno
  3492. type: string
  3493. data:
  3494. description: ''
  3495. example: {}
  3496. type: object
  3497. required:
  3498. - status
  3499. - message
  3500. - data
  3501. ZískatInformaceOProduktuResponse:
  3502. title: Získat informace o produktu response
  3503. example:
  3504. status: not-implemented
  3505. message: Není implementováno
  3506. data: {}
  3507. type: object
  3508. properties:
  3509. status:
  3510. description: ''
  3511. example: not-implemented
  3512. type: string
  3513. message:
  3514. description: ''
  3515. example: Není implementováno
  3516. type: string
  3517. data:
  3518. description: ''
  3519. example: {}
  3520. type: object
  3521. required:
  3522. - status
  3523. - message
  3524. - data
  3525. OhodnotitProduktResponse:
  3526. title: Ohodnotit produkt response
  3527. example:
  3528. status: not-implemented
  3529. message: Není implementováno
  3530. data: {}
  3531. type: object
  3532. properties:
  3533. status:
  3534. description: ''
  3535. example: not-implemented
  3536. type: string
  3537. message:
  3538. description: ''
  3539. example: Není implementováno
  3540. type: string
  3541. data:
  3542. description: ''
  3543. example: {}
  3544. type: object
  3545. required:
  3546. - status
  3547. - message
  3548. - data
  3549. OkomentovatProduktResponse:
  3550. title: Okomentovat produkt response
  3551. example:
  3552. status: not-implemented
  3553. message: Není implementováno
  3554. data: {}
  3555. type: object
  3556. properties:
  3557. status:
  3558. description: ''
  3559. example: not-implemented
  3560. type: string
  3561. message:
  3562. description: ''
  3563. example: Není implementováno
  3564. type: string
  3565. data:
  3566. description: ''
  3567. example: {}
  3568. type: object
  3569. required:
  3570. - status
  3571. - message
  3572. - data
  3573. SmlouvatOCeněProduktuResponse:
  3574. title: Smlouvat o ceně produktu response
  3575. example:
  3576. status: not-implemented
  3577. message: Není implementováno
  3578. data: {}
  3579. type: object
  3580. properties:
  3581. status:
  3582. description: ''
  3583. example: not-implemented
  3584. type: string
  3585. message:
  3586. description: ''
  3587. example: Není implementováno
  3588. type: string
  3589. data:
  3590. description: ''
  3591. example: {}
  3592. type: object
  3593. required:
  3594. - status
  3595. - message
  3596. - data
  3597. ZískatOblíbenéProduktyResponse:
  3598. title: Získat oblíbené produkty response
  3599. example:
  3600. status: not-implemented
  3601. message: Není implementováno
  3602. data: {}
  3603. type: object
  3604. properties:
  3605. status:
  3606. description: ''
  3607. example: not-implemented
  3608. type: string
  3609. message:
  3610. description: ''
  3611. example: Není implementováno
  3612. type: string
  3613. data:
  3614. description: ''
  3615. example: {}
  3616. type: object
  3617. required:
  3618. - status
  3619. - message
  3620. - data
  3621. ZískatInformaceOOblíbenémProduktuResponse:
  3622. title: Získat informace o oblíbeném produktu response
  3623. example:
  3624. status: not-implemented
  3625. message: Není implementováno
  3626. data: {}
  3627. type: object
  3628. properties:
  3629. status:
  3630. description: ''
  3631. example: not-implemented
  3632. type: string
  3633. message:
  3634. description: ''
  3635. example: Není implementováno
  3636. type: string
  3637. data:
  3638. description: ''
  3639. example: {}
  3640. type: object
  3641. required:
  3642. - status
  3643. - message
  3644. - data
  3645. PřidatProduktDoOblíbenýchResponse:
  3646. title: Přidat produkt do oblíbených response
  3647. example:
  3648. status: not-implemented
  3649. message: Není implementováno
  3650. data: {}
  3651. type: object
  3652. properties:
  3653. status:
  3654. description: ''
  3655. example: not-implemented
  3656. type: string
  3657. message:
  3658. description: ''
  3659. example: Není implementováno
  3660. type: string
  3661. data:
  3662. description: ''
  3663. example: {}
  3664. type: object
  3665. required:
  3666. - status
  3667. - message
  3668. - data
  3669. ZískatUpozorněníResponse:
  3670. title: Získat upozornění response
  3671. example:
  3672. status: not-implemented
  3673. message: Není implementováno
  3674. data: {}
  3675. type: object
  3676. properties:
  3677. status:
  3678. description: ''
  3679. example: not-implemented
  3680. type: string
  3681. message:
  3682. description: ''
  3683. example: Není implementováno
  3684. type: string
  3685. data:
  3686. description: ''
  3687. example: {}
  3688. type: object
  3689. required:
  3690. - status
  3691. - message
  3692. - data
  3693. OznačitUpozorněníJakoPřečtenéResponse:
  3694. title: Označit upozornění jako přečtené response
  3695. example:
  3696. status: not-implemented
  3697. message: Není implementováno
  3698. data: {}
  3699. type: object
  3700. properties:
  3701. status:
  3702. description: ''
  3703. example: not-implemented
  3704. type: string
  3705. message:
  3706. description: ''
  3707. example: Není implementováno
  3708. type: string
  3709. data:
  3710. description: ''
  3711. example: {}
  3712. type: object
  3713. required:
  3714. - status
  3715. - message
  3716. - data
  3717. OznačitUpozorněníJakoZastaraléResponse:
  3718. title: Označit upozornění jako zastaralé response
  3719. example:
  3720. status: not-implemented
  3721. message: Není implementováno
  3722. data: {}
  3723. type: object
  3724. properties:
  3725. status:
  3726. description: ''
  3727. example: not-implemented
  3728. type: string
  3729. message:
  3730. description: ''
  3731. example: Není implementováno
  3732. type: string
  3733. data:
  3734. description: ''
  3735. example: {}
  3736. type: object
  3737. required:
  3738. - status
  3739. - message
  3740. - data
  3741. PřidatUpozorněníResponse:
  3742. title: Přidat upozornění response
  3743. example:
  3744. status: not-implemented
  3745. message: Není implementováno
  3746. data: {}
  3747. type: object
  3748. properties:
  3749. status:
  3750. description: ''
  3751. example: not-implemented
  3752. type: string
  3753. message:
  3754. description: ''
  3755. example: Není implementováno
  3756. type: string
  3757. data:
  3758. description: ''
  3759. example: {}
  3760. type: object
  3761. required:
  3762. - status
  3763. - message
  3764. - data
  3765. ZískatZáznamyOLoajálníchBodechResponse:
  3766. title: Získat záznamy o loajálních bodech response
  3767. example:
  3768. status: not-implemented
  3769. message: Není implementováno
  3770. data: {}
  3771. type: object
  3772. properties:
  3773. status:
  3774. description: ''
  3775. example: not-implemented
  3776. type: string
  3777. message:
  3778. description: ''
  3779. example: Není implementováno
  3780. type: string
  3781. data:
  3782. description: ''
  3783. example: {}
  3784. type: object
  3785. required:
  3786. - status
  3787. - message
  3788. - data
  3789. ZískatInformaceOZáznamuLoajálníchBodůResponse:
  3790. title: Získat informace o záznamu loajálních bodů response
  3791. example:
  3792. status: not-implemented
  3793. message: Není implementováno
  3794. data: {}
  3795. type: object
  3796. properties:
  3797. status:
  3798. description: ''
  3799. example: not-implemented
  3800. type: string
  3801. message:
  3802. description: ''
  3803. example: Není implementováno
  3804. type: string
  3805. data:
  3806. description: ''
  3807. example: {}
  3808. type: object
  3809. required:
  3810. - status
  3811. - message
  3812. - data
  3813. ZískatProdejnyResponse:
  3814. title: Získat prodejny response
  3815. example:
  3816. status: not-implemented
  3817. message: Není implementováno
  3818. data: {}
  3819. type: object
  3820. properties:
  3821. status:
  3822. description: ''
  3823. example: not-implemented
  3824. type: string
  3825. message:
  3826. description: ''
  3827. example: Není implementováno
  3828. type: string
  3829. data:
  3830. description: ''
  3831. example: {}
  3832. type: object
  3833. required:
  3834. - status
  3835. - message
  3836. - data
  3837. ZískatInformaceOProdejněResponse:
  3838. title: Získat informace o prodejně response
  3839. example:
  3840. status: not-implemented
  3841. message: Není implementováno
  3842. data: {}
  3843. type: object
  3844. properties:
  3845. status:
  3846. description: ''
  3847. example: not-implemented
  3848. type: string
  3849. message:
  3850. description: ''
  3851. example: Není implementováno
  3852. type: string
  3853. data:
  3854. description: ''
  3855. example: {}
  3856. type: object
  3857. required:
  3858. - status
  3859. - message
  3860. - data
  3861. ZískatReceptyResponse:
  3862. title: Získat recepty response
  3863. example:
  3864. status: not-implemented
  3865. message: Není implementováno
  3866. data: {}
  3867. type: object
  3868. properties:
  3869. status:
  3870. description: ''
  3871. example: not-implemented
  3872. type: string
  3873. message:
  3874. description: ''
  3875. example: Není implementováno
  3876. type: string
  3877. data:
  3878. description: ''
  3879. example: {}
  3880. type: object
  3881. required:
  3882. - status
  3883. - message
  3884. - data
  3885. ZískatInformaceOReceptuResponse:
  3886. title: Získat informace o receptu response
  3887. example:
  3888. status: not-implemented
  3889. message: Není implementováno
  3890. data: {}
  3891. type: object
  3892. properties:
  3893. status:
  3894. description: ''
  3895. example: not-implemented
  3896. type: string
  3897. message:
  3898. description: ''
  3899. example: Není implementováno
  3900. type: string
  3901. data:
  3902. description: ''
  3903. example: {}
  3904. type: object
  3905. required:
  3906. - status
  3907. - message
  3908. - data
  3909. OhodnotitReceptResponse:
  3910. title: Ohodnotit recept response
  3911. example:
  3912. status: not-implemented
  3913. message: Není implementováno
  3914. data: {}
  3915. type: object
  3916. properties:
  3917. status:
  3918. description: ''
  3919. example: not-implemented
  3920. type: string
  3921. message:
  3922. description: ''
  3923. example: Není implementováno
  3924. type: string
  3925. data:
  3926. description: ''
  3927. example: {}
  3928. type: object
  3929. required:
  3930. - status
  3931. - message
  3932. - data
  3933. OkomentovatReceptResponse:
  3934. title: Okomentovat recept response
  3935. example:
  3936. status: not-implemented
  3937. message: Není implementováno
  3938. data: {}
  3939. type: object
  3940. properties:
  3941. status:
  3942. description: ''
  3943. example: not-implemented
  3944. type: string
  3945. message:
  3946. description: ''
  3947. example: Není implementováno
  3948. type: string
  3949. data:
  3950. description: ''
  3951. example: {}
  3952. type: object
  3953. required:
  3954. - status
  3955. - message
  3956. - data
  3957. ZaznamenatPoziciResponse:
  3958. title: Zaznamenat pozici response
  3959. example:
  3960. status: not-implemented
  3961. message: Není implementováno
  3962. data: {}
  3963. type: object
  3964. properties:
  3965. status:
  3966. description: ''
  3967. example: not-implemented
  3968. type: string
  3969. message:
  3970. description: ''
  3971. example: Není implementováno
  3972. type: string
  3973. data:
  3974. description: ''
  3975. example: {}
  3976. type: object
  3977. required:
  3978. - status
  3979. - message
  3980. - data
  3981. ZaznamenatInformaceODostupnýchApResponse:
  3982. title: Zaznamenat informace o dostupných AP response
  3983. example:
  3984. status: not-implemented
  3985. message: Není implementováno
  3986. data: {}
  3987. type: object
  3988. properties:
  3989. status:
  3990. description: ''
  3991. example: not-implemented
  3992. type: string
  3993. message:
  3994. description: ''
  3995. example: Není implementováno
  3996. type: string
  3997. data:
  3998. description: ''
  3999. example: {}
  4000. type: object
  4001. required:
  4002. - status
  4003. - message
  4004. - data
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement