diff --git a/api/l2-config/localretail_shopping_1.1.0.yaml b/api/l2-config/localretail_shopping_1.1.0.yaml
index c37e259..e9a451a 100644
--- a/api/l2-config/localretail_shopping_1.1.0.yaml
+++ b/api/l2-config/localretail_shopping_1.1.0.yaml
@@ -61,7 +61,8 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BAPOrder'
required:
- order
required:
@@ -95,7 +96,10 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BAPOrder'
+ required:
+ - billing
required:
- order
required:
@@ -151,7 +155,11 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BAPOrder'
+ required:
+ - billing
+ - payments
required:
- order
required:
@@ -183,6 +191,7 @@ paths:
- bpp_uri
message:
type: object
+ additionalProperties: false
properties:
order_id:
$ref: '#/components/schemas/Order/properties/id'
@@ -217,6 +226,7 @@ paths:
- bpp_uri
message:
type: object
+ additionalProperties: false
properties:
order_id:
$ref: '#/components/schemas/Order/properties/id'
@@ -300,6 +310,8 @@ paths:
description: Updated order object
allOf:
- $ref: '#/components/schemas/Order'
+ required:
+ - id
required:
- update_target
- order
@@ -335,6 +347,7 @@ paths:
properties:
ratings:
type: array
+ minItems: 1
items:
$ref: '#/components/schemas/Rating'
required:
@@ -369,6 +382,8 @@ paths:
properties:
support:
$ref: '#/components/schemas/Support'
+ required:
+ - ref_id
required:
- context
- message
@@ -436,11 +451,20 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - not:
+ required:
+ - id
+ required:
+ - quote
+ required:
+ - order
error:
$ref: '#/components/schemas/Error'
required:
- context
+ - message
responses:
default:
$ref: '#/paths/~1init/post/responses/default'
@@ -469,7 +493,19 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - not:
+ required:
+ - id
+ required:
+ - quote
+ - billing
+ - payments
+ - cancellation_terms
+ - refund_terms
+ - return_terms
+ - replacement_terms
required:
- order
error:
@@ -504,7 +540,31 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - properties:
+ fulfillments:
+ type: array
+ items:
+ allOf:
+ - properties:
+ state:
+ allOf:
+ - properties:
+ descriptor:
+ required:
+ - code
+ required:
+ - state
+ required:
+ - quote
+ - billing
+ - payments
+ - cancellation_terms
+ - refund_terms
+ - return_terms
+ - replacement_terms
+ - id
required:
- order
error:
@@ -574,7 +634,34 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - properties:
+ fulfillments:
+ type: array
+ items:
+ allOf:
+ - properties:
+ state:
+ allOf:
+ - properties:
+ descriptor:
+ required:
+ - code
+ required:
+ - descriptor
+ required:
+ - state
+ required:
+ - quote
+ - billing
+ - payments
+ - cancellation_terms
+ - refund_terms
+ - return_terms
+ - replacement_terms
+ - id
+ - cancellation
required:
- order
error:
@@ -609,7 +696,33 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - properties:
+ fulfillments:
+ type: array
+ items:
+ allOf:
+ - properties:
+ state:
+ allOf:
+ - properties:
+ descriptor:
+ required:
+ - code
+ required:
+ - descriptor
+ required:
+ - state
+ required:
+ - quote
+ - billing
+ - payments
+ - cancellation_terms
+ - refund_terms
+ - return_terms
+ - replacement_terms
+ - id
required:
- order
error:
@@ -644,7 +757,33 @@ paths:
type: object
properties:
order:
- $ref: '#/components/schemas/Order'
+ allOf:
+ - $ref: '#/components/schemas/BPPOrder'
+ - properties:
+ fulfillments:
+ type: array
+ items:
+ allOf:
+ - properties:
+ state:
+ allOf:
+ - properties:
+ descriptor:
+ required:
+ - code
+ required:
+ - descriptor
+ required:
+ - state
+ required:
+ - quote
+ - billing
+ - payments
+ - cancellation_terms
+ - refund_terms
+ - return_terms
+ - replacement_terms
+ - id
required:
- order
error:
@@ -715,7 +854,15 @@ paths:
type: object
properties:
support:
- $ref: '#/components/schemas/Support'
+ allOf:
+ - $ref: '#/components/schemas/Support'
+ - anyOf:
+ - required:
+ - phone
+ - required:
+ - email
+ - required:
+ - url
error:
$ref: '#/components/schemas/Error'
required:
@@ -734,6 +881,7 @@ components:
Ack:
description: 'Describes the acknowledgement sent in response to an API call. If the implementation uses HTTP/S, then Ack must be returned in the same session. Every API call to a BPP must be responded to with an Ack whether the BPP intends to respond with a callback or not. This has one property called `status` that indicates the status of the Acknowledgement.'
type: object
+ additionalProperties: false
properties:
status:
type: string
@@ -749,12 +897,26 @@ components:
AddOn:
description: Describes an additional item offered as a value-addition to a product or service. This does not exist independently in a catalog and is always associated with an item.
type: object
+ additionalProperties: false
properties:
id:
description: Provider-defined ID of the add-on
type: string
descriptor:
- $ref: '#/components/schemas/Descriptor'
+ allOf:
+ - $ref: '#/components/schemas/Descriptor'
+ - properties:
+ code:
+ type: string
+ enum:
+ - USER_MANUAL
+ - EXTENDED_WARRANTY
+ - ACCESSORIES
+ - INSTALLATION SERVICES
+ - MAINTENANCE PLANS
+ - SUBSCRIPTION SERVICES
+ - PERSONALIZATION
+ - INSURANCE
price:
$ref: '#/components/schemas/Price'
Address:
@@ -762,6 +924,8 @@ components:
type: string
Agent:
description: 'Describes the direct performer, driver or executor that fulfills an order. It is usually a person. But in some rare cases, it could be a non-living entity like a drone, or a bot. Some examples of agents are Doctor in the healthcare sector, a driver in the mobility sector, or a delivery person in the logistics sector. This object can be set at any stage of the order lifecycle. This can be set at the discovery stage when the BPP wants to provide details on the agent fulfilling the order, like in healthcare, where the doctor''s name appears during search. This object can also used to search for a particular person that the customer wants fulfilling an order. Sometimes, this object gets instantiated after the order is confirmed, like in the case of on-demand taxis, where the driver is assigned after the user confirms the ride.'
+ type: object
+ additionalProperties: false
properties:
person:
$ref: '#/components/schemas/Person'
@@ -774,6 +938,7 @@ components:
Authorization:
description: 'Describes an authorization mechanism used to start or end the fulfillment of an order. For example, in the mobility sector, the driver may require a one-time password to initiate the ride. In the healthcare sector, a patient may need to provide a password to open a video conference link during a teleconsultation.'
type: object
+ additionalProperties: false
properties:
type:
description: Type of authorization mechanism used. The allowed values for this field can be published as part of the network policy.
@@ -795,6 +960,7 @@ components:
Billing:
description: 'Describes the billing details of an entity.
This has properties like name,organization,address,email,phone,time,tax_number, created_at,updated_at'
type: object
+ additionalProperties: false
properties:
name:
description: Name of the billable entity
@@ -832,6 +998,7 @@ components:
Cancellation:
description: Describes a cancellation event
type: object
+ additionalProperties: false
properties:
time:
description: Date-time when the order was cancelled by the buyer
@@ -850,9 +1017,13 @@ components:
description: Any additional information regarding the nature of cancellation
allOf:
- $ref: '#/components/schemas/Descriptor'
+ required:
+ - time
+ - cancelled_by
CancellationTerm:
description: Describes the cancellation terms of an item or an order. This can be referenced at an item or order level. Item-level cancellation terms can override the terms at the order level.
type: object
+ additionalProperties: false
properties:
fulfillment_state:
description: The state of fulfillment during which this term is applicable.
@@ -871,15 +1042,20 @@ components:
$ref: '#/components/schemas/XInput'
external_ref:
$ref: '#/components/schemas/MediaFile'
+ required:
+ - cancel_by
+ - cancellation_fee
Catalog:
description: 'Describes the products or services offered by a BPP. This is typically sent as the response to a search intent from a BAP. The payment terms, offers and terms of fulfillment supported by the BPP can also be included here. The BPP can show hierarchical nature of products/services in its catalog using the parent_category_id in categories. The BPP can also send a ttl (time to live) in the context which is the duration for which a BAP can cache the catalog and use the cached catalog.
This has properties like bbp/descriptor,bbp/categories,bbp/fulfillments,bbp/payments,bbp/offers,bbp/providers and exp
This is used in the following situations.
Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"4dfe2998-17e0-45cc-a52e-49f3f5a8eb47\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://bombaytrooper.com/wp-content/uploads/2019/03/brownexplorer-360-01-1.jpg\" }],\n \"name\": \"Explorer Backpack\",\n \"short_desc\": \"The Explorer Backpack is your reliable companion for all your outdoor adventures. With its spacious compartments, ergonomic design, and durable construction, it's perfect for hiking, camping, and backpacking.\",\n \"long_desc\": \"Embark on your next adventure with confidence with our Explorer Backpack. This versatile backpack features multiple compartments and pockets to keep your gear organized and easily accessible. The ergonomic design and adjustable straps ensure a comfortable fit, while the durable materials provide long-lasting performance in rugged conditions.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1999.0\",\n \"currency\": \"INR\",\n \"value\": \"1999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"backpack\"\n },\n {\n \"value\": \"explorer\"\n },\n {\n \"value\": \"camping\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"82c8d8a1-eb10-44de-ba78-cb37c2e98630\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://images-cdn.ubuy.co.in/6605ee95cae6cb675d0b9d59-onlyfire-rocket-stove-outdoor-portable.jpg\" }],\n \"name\": \"Campfire Camping Stove\",\n \"short_desc\": \"The Campfire Camping Stove is a must-have for any outdoor enthusiast. Compact, lightweight, and easy to use, it's perfect for cooking delicious meals on your camping trips.\",\n \"long_desc\": \"Take your outdoor cooking to the next level with our Campfire Camping Stove. Designed for portability and convenience, this compact stove is ideal for backpacking, camping, and picnicking. With its adjustable flame and sturdy construction, it's perfect for boiling water, cooking meals, and making s'mores around the campfire.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1499.0\",\n \"currency\": \"INR\",\n \"value\": \"1499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"camping stove\"\n },\n {\n \"value\": \"campfire\"\n },\n {\n \"value\": \"outdoor cooking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"backpacking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"f8ff1168-f7d0-4b14-9437-2b20f54f0f40\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://cdni.llbean.net/is/image/wim/518417_51386_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/518417_51386_41\" }],\n \"name\": \"Trailblazer Headlamp\",\n \"short_desc\": \"Illuminate your path with our Trailblazer Headlamp. Lightweight, durable, and easy to use, it's the perfect companion for night hikes, camping trips, and outdoor adventures.\",\n \"long_desc\": \"Light up the night with our Trailblazer Headlamp. Whether you're exploring dark trails, setting up camp, or reading in your tent, this versatile headlamp provides bright, reliable illumination. With adjustable brightness settings and a comfortable strap, it's designed for comfort and convenience on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"799.0\",\n \"currency\": \"INR\",\n \"value\": \"799.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"headlamp\"\n },\n {\n \"value\": \"trailblazer\"\n },\n {\n \"value\": \"night hiking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"outdoor lighting\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"1b38f7e7-18f7-4978-9a2f-816a2d9029af\",\n \"descriptor\": {\n \"images\": [\n {\n \"url\": \"https://www.seatosummitindia.com/cdn/shop/products/S4131_TraverseTvIIISleepingBag_Angle_ForWeb_14d6bbde-fae8-441e-b770-25552896653f.jpg?v=1661858175\"\n }\n ],\n \"name\": \"Summit Sleeping Bag\",\n \"short_desc\": \"Stay warm and comfortable on your camping trips with our Summit Sleeping Bag. Designed for cold weather conditions, it's perfect for overnight stays in the great outdoors.\",\n \"long_desc\": \"Get a restful night's sleep in any environment with our Summit Sleeping Bag. Whether you're camping in the mountains or backpacking through the wilderness, this sleeping bag provides warmth and comfort in cold weather conditions. Featuring a soft, cozy lining and a durable outer shell, it's designed for durability and performance on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"2499.0\",\n \"currency\": \"INR\",\n \"value\": \"2499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sleeping bag\"\n },\n {\n \"value\": \"summit\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"cold weather\"\n },\n {\n \"value\": \"outdoor sleeping\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchInvalidCategoryCode", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_search\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"catalog\": {\n \"descriptor\": {\n \"name\": \"HBO\"\n },\n \"providers\": [\n {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [\n {\n \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\"\n }\n ],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"categories\": [\n {\n \"id\": \"c1\",\n \"descriptor\": {\n \"code\": \"MISC\",\n \"name\": \"Earphone\"\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\"\n }\n ],\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"4dfe2998-17e0-45cc-a52e-49f3f5a8eb47\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://bombaytrooper.com/wp-content/uploads/2019/03/brownexplorer-360-01-1.jpg\" }],\n \"name\": \"Explorer Backpack\",\n \"short_desc\": \"The Explorer Backpack is your reliable companion for all your outdoor adventures. With its spacious compartments, ergonomic design, and durable construction, it's perfect for hiking, camping, and backpacking.\",\n \"long_desc\": \"Embark on your next adventure with confidence with our Explorer Backpack. This versatile backpack features multiple compartments and pockets to keep your gear organized and easily accessible. The ergonomic design and adjustable straps ensure a comfortable fit, while the durable materials provide long-lasting performance in rugged conditions.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1999.0\",\n \"currency\": \"INR\",\n \"value\": \"1999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"backpack\"\n },\n {\n \"value\": \"explorer\"\n },\n {\n \"value\": \"camping\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"82c8d8a1-eb10-44de-ba78-cb37c2e98630\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://images-cdn.ubuy.co.in/6605ee95cae6cb675d0b9d59-onlyfire-rocket-stove-outdoor-portable.jpg\" }],\n \"name\": \"Campfire Camping Stove\",\n \"short_desc\": \"The Campfire Camping Stove is a must-have for any outdoor enthusiast. Compact, lightweight, and easy to use, it's perfect for cooking delicious meals on your camping trips.\",\n \"long_desc\": \"Take your outdoor cooking to the next level with our Campfire Camping Stove. Designed for portability and convenience, this compact stove is ideal for backpacking, camping, and picnicking. With its adjustable flame and sturdy construction, it's perfect for boiling water, cooking meals, and making s'mores around the campfire.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1499.0\",\n \"currency\": \"INR\",\n \"value\": \"1499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"camping stove\"\n },\n {\n \"value\": \"campfire\"\n },\n {\n \"value\": \"outdoor cooking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"backpacking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"f8ff1168-f7d0-4b14-9437-2b20f54f0f40\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://cdni.llbean.net/is/image/wim/518417_51386_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/518417_51386_41\" }],\n \"name\": \"Trailblazer Headlamp\",\n \"short_desc\": \"Illuminate your path with our Trailblazer Headlamp. Lightweight, durable, and easy to use, it's the perfect companion for night hikes, camping trips, and outdoor adventures.\",\n \"long_desc\": \"Light up the night with our Trailblazer Headlamp. Whether you're exploring dark trails, setting up camp, or reading in your tent, this versatile headlamp provides bright, reliable illumination. With adjustable brightness settings and a comfortable strap, it's designed for comfort and convenience on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"799.0\",\n \"currency\": \"INR\",\n \"value\": \"799.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"headlamp\"\n },\n {\n \"value\": \"trailblazer\"\n },\n {\n \"value\": \"night hiking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"outdoor lighting\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"1b38f7e7-18f7-4978-9a2f-816a2d9029af\",\n \"descriptor\": {\n \"images\": [\n {\n \"url\": \"https://www.seatosummitindia.com/cdn/shop/products/S4131_TraverseTvIIISleepingBag_Angle_ForWeb_14d6bbde-fae8-441e-b770-25552896653f.jpg?v=1661858175\"\n }\n ],\n \"name\": \"Summit Sleeping Bag\",\n \"short_desc\": \"Stay warm and comfortable on your camping trips with our Summit Sleeping Bag. Designed for cold weather conditions, it's perfect for overnight stays in the great outdoors.\",\n \"long_desc\": \"Get a restful night's sleep in any environment with our Summit Sleeping Bag. Whether you're camping in the mountains or backpacking through the wilderness, this sleeping bag provides warmth and comfort in cold weather conditions. Featuring a soft, cozy lining and a durable outer shell, it's designed for durability and performance on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"2499.0\",\n \"currency\": \"INR\",\n \"value\": \"2499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sleeping bag\"\n },\n {\n \"value\": \"summit\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"cold weather\"\n },\n {\n \"value\": \"outdoor sleeping\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchInvalidFulfillmentType", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_search\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"catalog\": {\n \"descriptor\": {\n \"name\": \"HBO\"\n },\n \"providers\": [\n {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [\n {\n \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\"\n }\n ],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"categories\": [\n {\n \"id\": \"c1\",\n \"descriptor\": {\n \"code\": \"ELECTRONICS\",\n \"name\": \"Earphone\"\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"DELIVERY\"\n }\n ],\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"4dfe2998-17e0-45cc-a52e-49f3f5a8eb47\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://bombaytrooper.com/wp-content/uploads/2019/03/brownexplorer-360-01-1.jpg\" }],\n \"name\": \"Explorer Backpack\",\n \"short_desc\": \"The Explorer Backpack is your reliable companion for all your outdoor adventures. With its spacious compartments, ergonomic design, and durable construction, it's perfect for hiking, camping, and backpacking.\",\n \"long_desc\": \"Embark on your next adventure with confidence with our Explorer Backpack. This versatile backpack features multiple compartments and pockets to keep your gear organized and easily accessible. The ergonomic design and adjustable straps ensure a comfortable fit, while the durable materials provide long-lasting performance in rugged conditions.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1999.0\",\n \"currency\": \"INR\",\n \"value\": \"1999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"backpack\"\n },\n {\n \"value\": \"explorer\"\n },\n {\n \"value\": \"camping\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"82c8d8a1-eb10-44de-ba78-cb37c2e98630\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://images-cdn.ubuy.co.in/6605ee95cae6cb675d0b9d59-onlyfire-rocket-stove-outdoor-portable.jpg\" }],\n \"name\": \"Campfire Camping Stove\",\n \"short_desc\": \"The Campfire Camping Stove is a must-have for any outdoor enthusiast. Compact, lightweight, and easy to use, it's perfect for cooking delicious meals on your camping trips.\",\n \"long_desc\": \"Take your outdoor cooking to the next level with our Campfire Camping Stove. Designed for portability and convenience, this compact stove is ideal for backpacking, camping, and picnicking. With its adjustable flame and sturdy construction, it's perfect for boiling water, cooking meals, and making s'mores around the campfire.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1499.0\",\n \"currency\": \"INR\",\n \"value\": \"1499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"camping stove\"\n },\n {\n \"value\": \"campfire\"\n },\n {\n \"value\": \"outdoor cooking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"backpacking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"f8ff1168-f7d0-4b14-9437-2b20f54f0f40\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://cdni.llbean.net/is/image/wim/518417_51386_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/518417_51386_41\" }],\n \"name\": \"Trailblazer Headlamp\",\n \"short_desc\": \"Illuminate your path with our Trailblazer Headlamp. Lightweight, durable, and easy to use, it's the perfect companion for night hikes, camping trips, and outdoor adventures.\",\n \"long_desc\": \"Light up the night with our Trailblazer Headlamp. Whether you're exploring dark trails, setting up camp, or reading in your tent, this versatile headlamp provides bright, reliable illumination. With adjustable brightness settings and a comfortable strap, it's designed for comfort and convenience on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"799.0\",\n \"currency\": \"INR\",\n \"value\": \"799.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"headlamp\"\n },\n {\n \"value\": \"trailblazer\"\n },\n {\n \"value\": \"night hiking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"outdoor lighting\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"1b38f7e7-18f7-4978-9a2f-816a2d9029af\",\n \"descriptor\": {\n \"images\": [\n {\n \"url\": \"https://www.seatosummitindia.com/cdn/shop/products/S4131_TraverseTvIIISleepingBag_Angle_ForWeb_14d6bbde-fae8-441e-b770-25552896653f.jpg?v=1661858175\"\n }\n ],\n \"name\": \"Summit Sleeping Bag\",\n \"short_desc\": \"Stay warm and comfortable on your camping trips with our Summit Sleeping Bag. Designed for cold weather conditions, it's perfect for overnight stays in the great outdoors.\",\n \"long_desc\": \"Get a restful night's sleep in any environment with our Summit Sleeping Bag. Whether you're camping in the mountains or backpacking through the wilderness, this sleeping bag provides warmth and comfort in cold weather conditions. Featuring a soft, cozy lining and a durable outer shell, it's designed for durability and performance on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"2499.0\",\n \"currency\": \"INR\",\n \"value\": \"2499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sleeping bag\"\n },\n {\n \"value\": \"summit\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"cold weather\"\n },\n {\n \"value\": \"outdoor sleeping\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchWithEmptyCategoryAndItemsArrays", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_search\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"catalog\": {\n \"descriptor\": {\n \"name\": \"HBO\"\n },\n \"providers\": [\n {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [\n {\n \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\"\n }\n ],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"categories\": [\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\"\n }\n ],\n \"items\": [\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchWithoutProviderItemRequiredFields", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_search\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"catalog\": {\n \"descriptor\": {\n \"name\": \"HBO\"\n },\n \"providers\": [\n {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [\n {\n \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\"\n }\n ],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"categories\": [\n {\n \"id\": \"c1\",\n \"descriptor\": {\n \"code\": \"ELECTRONICS\",\n \"name\": \"Earphone\"\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\"\n }\n ],\n \"items\": [\n {\n \"matched\": true,\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"4dfe2998-17e0-45cc-a52e-49f3f5a8eb47\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://bombaytrooper.com/wp-content/uploads/2019/03/brownexplorer-360-01-1.jpg\" }],\n \"name\": \"Explorer Backpack\",\n \"short_desc\": \"The Explorer Backpack is your reliable companion for all your outdoor adventures. With its spacious compartments, ergonomic design, and durable construction, it's perfect for hiking, camping, and backpacking.\",\n \"long_desc\": \"Embark on your next adventure with confidence with our Explorer Backpack. This versatile backpack features multiple compartments and pockets to keep your gear organized and easily accessible. The ergonomic design and adjustable straps ensure a comfortable fit, while the durable materials provide long-lasting performance in rugged conditions.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1999.0\",\n \"currency\": \"INR\",\n \"value\": \"1999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"backpack\"\n },\n {\n \"value\": \"explorer\"\n },\n {\n \"value\": \"camping\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"82c8d8a1-eb10-44de-ba78-cb37c2e98630\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://images-cdn.ubuy.co.in/6605ee95cae6cb675d0b9d59-onlyfire-rocket-stove-outdoor-portable.jpg\" }],\n \"name\": \"Campfire Camping Stove\",\n \"short_desc\": \"The Campfire Camping Stove is a must-have for any outdoor enthusiast. Compact, lightweight, and easy to use, it's perfect for cooking delicious meals on your camping trips.\",\n \"long_desc\": \"Take your outdoor cooking to the next level with our Campfire Camping Stove. Designed for portability and convenience, this compact stove is ideal for backpacking, camping, and picnicking. With its adjustable flame and sturdy construction, it's perfect for boiling water, cooking meals, and making s'mores around the campfire.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1499.0\",\n \"currency\": \"INR\",\n \"value\": \"1499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"camping stove\"\n },\n {\n \"value\": \"campfire\"\n },\n {\n \"value\": \"outdoor cooking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"backpacking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"f8ff1168-f7d0-4b14-9437-2b20f54f0f40\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://cdni.llbean.net/is/image/wim/518417_51386_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/518417_51386_41\" }],\n \"name\": \"Trailblazer Headlamp\",\n \"short_desc\": \"Illuminate your path with our Trailblazer Headlamp. Lightweight, durable, and easy to use, it's the perfect companion for night hikes, camping trips, and outdoor adventures.\",\n \"long_desc\": \"Light up the night with our Trailblazer Headlamp. Whether you're exploring dark trails, setting up camp, or reading in your tent, this versatile headlamp provides bright, reliable illumination. With adjustable brightness settings and a comfortable strap, it's designed for comfort and convenience on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"799.0\",\n \"currency\": \"INR\",\n \"value\": \"799.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"headlamp\"\n },\n {\n \"value\": \"trailblazer\"\n },\n {\n \"value\": \"night hiking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"outdoor lighting\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"1b38f7e7-18f7-4978-9a2f-816a2d9029af\",\n \"descriptor\": {\n \"images\": [\n {\n \"url\": \"https://www.seatosummitindia.com/cdn/shop/products/S4131_TraverseTvIIISleepingBag_Angle_ForWeb_14d6bbde-fae8-441e-b770-25552896653f.jpg?v=1661858175\"\n }\n ],\n \"name\": \"Summit Sleeping Bag\",\n \"short_desc\": \"Stay warm and comfortable on your camping trips with our Summit Sleeping Bag. Designed for cold weather conditions, it's perfect for overnight stays in the great outdoors.\",\n \"long_desc\": \"Get a restful night's sleep in any environment with our Summit Sleeping Bag. Whether you're camping in the mountains or backpacking through the wilderness, this sleeping bag provides warmth and comfort in cold weather conditions. Featuring a soft, cozy lining and a durable outer shell, it's designed for durability and performance on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"2499.0\",\n \"currency\": \"INR\",\n \"value\": \"2499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sleeping bag\"\n },\n {\n \"value\": \"summit\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"cold weather\"\n },\n {\n \"value\": \"outdoor sleeping\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_search\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"catalog\": {\n \"descriptor\": {\n \"name\": \"HBO\"\n },\n \"providers\": [\n {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [\n {\n \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\"\n }\n ],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"categories\": [\n {\n \"id\": \"c1\",\n \"descriptor\": {\n \"code\": \"ELECTRONICS\",\n \"name\": \"Earphone\"\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\"\n }\n ],\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"4dfe2998-17e0-45cc-a52e-49f3f5a8eb47\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://bombaytrooper.com/wp-content/uploads/2019/03/brownexplorer-360-01-1.jpg\" }],\n \"name\": \"Explorer Backpack\",\n \"short_desc\": \"The Explorer Backpack is your reliable companion for all your outdoor adventures. With its spacious compartments, ergonomic design, and durable construction, it's perfect for hiking, camping, and backpacking.\",\n \"long_desc\": \"Embark on your next adventure with confidence with our Explorer Backpack. This versatile backpack features multiple compartments and pockets to keep your gear organized and easily accessible. The ergonomic design and adjustable straps ensure a comfortable fit, while the durable materials provide long-lasting performance in rugged conditions.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1999.0\",\n \"currency\": \"INR\",\n \"value\": \"1999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"backpack\"\n },\n {\n \"value\": \"explorer\"\n },\n {\n \"value\": \"camping\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"82c8d8a1-eb10-44de-ba78-cb37c2e98630\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://images-cdn.ubuy.co.in/6605ee95cae6cb675d0b9d59-onlyfire-rocket-stove-outdoor-portable.jpg\" }],\n \"name\": \"Campfire Camping Stove\",\n \"short_desc\": \"The Campfire Camping Stove is a must-have for any outdoor enthusiast. Compact, lightweight, and easy to use, it's perfect for cooking delicious meals on your camping trips.\",\n \"long_desc\": \"Take your outdoor cooking to the next level with our Campfire Camping Stove. Designed for portability and convenience, this compact stove is ideal for backpacking, camping, and picnicking. With its adjustable flame and sturdy construction, it's perfect for boiling water, cooking meals, and making s'mores around the campfire.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"1499.0\",\n \"currency\": \"INR\",\n \"value\": \"1499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"camping stove\"\n },\n {\n \"value\": \"campfire\"\n },\n {\n \"value\": \"outdoor cooking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"backpacking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"f8ff1168-f7d0-4b14-9437-2b20f54f0f40\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://cdni.llbean.net/is/image/wim/518417_51386_41?hei=1095&wid=950&resMode=sharp2&defaultImage=llbprod/518417_51386_41\" }],\n \"name\": \"Trailblazer Headlamp\",\n \"short_desc\": \"Illuminate your path with our Trailblazer Headlamp. Lightweight, durable, and easy to use, it's the perfect companion for night hikes, camping trips, and outdoor adventures.\",\n \"long_desc\": \"Light up the night with our Trailblazer Headlamp. Whether you're exploring dark trails, setting up camp, or reading in your tent, this versatile headlamp provides bright, reliable illumination. With adjustable brightness settings and a comfortable strap, it's designed for comfort and convenience on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"799.0\",\n \"currency\": \"INR\",\n \"value\": \"799.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"headlamp\"\n },\n {\n \"value\": \"trailblazer\"\n },\n {\n \"value\": \"night hiking\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"outdoor lighting\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n },\n {\n \"id\": \"1b38f7e7-18f7-4978-9a2f-816a2d9029af\",\n \"descriptor\": {\n \"images\": [\n {\n \"url\": \"https://www.seatosummitindia.com/cdn/shop/products/S4131_TraverseTvIIISleepingBag_Angle_ForWeb_14d6bbde-fae8-441e-b770-25552896653f.jpg?v=1661858175\"\n }\n ],\n \"name\": \"Summit Sleeping Bag\",\n \"short_desc\": \"Stay warm and comfortable on your camping trips with our Summit Sleeping Bag. Designed for cold weather conditions, it's perfect for overnight stays in the great outdoors.\",\n \"long_desc\": \"Get a restful night's sleep in any environment with our Summit Sleeping Bag. Whether you're camping in the mountains or backpacking through the wilderness, this sleeping bag provides warmth and comfort in cold weather conditions. Featuring a soft, cozy lining and a durable outer shell, it's designed for durability and performance on all your outdoor adventures.
\"\n },\n \"matched\": true,\n \"price\": {\n \"listed_value\": \"2499.0\",\n \"currency\": \"INR\",\n \"value\": \"2499.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sleeping bag\"\n },\n {\n \"value\": \"summit\"\n },\n {\n \"value\": \"camping gear\"\n },\n {\n \"value\": \"cold weather\"\n },\n {\n \"value\": \"outdoor sleeping\"\n },\n {\n \"value\": \"trekking\"\n }\n ]\n }\n ]\n }\n ]\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithoutQuote", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithoutRequiredFieldsIn Desc", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithoutRequiredFieldsInItem", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithEmptyItemAndFulfillment", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n ],\n \"fulfillments\": [\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithoutRequiredFieldsINQuote", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithoutRequiredFieldsInBreakup", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectInvalidBreakup", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"NA\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectWithOrderId", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"1234\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_selectValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_select\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"id\": \"1\"\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_select", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_select" + ] + } + }, + "response": [] + }, + { + "name": "on_initWithoutRequiredFields", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_init\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n\"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_init", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_init" + ] + } + }, + "response": [] + }, + { + "name": "on_initWithouPaymentRequiredFields", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_init\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n\"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_init", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_init" + ] + } + }, + "response": [] + }, + { + "name": "on_initInvalidPayment", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_init\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n\"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"NOT_PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_init", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_init" + ] + } + }, + "response": [] + }, + { + "name": "on_initWithOrderId", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_init\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n\"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"1234\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"NOT_PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_init", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_init" + ] + } + }, + "response": [] + }, + { + "name": "on_initValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_init\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n\"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"NOT_PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_init", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_init" + ] + } + }, + "response": [] + }, + { + "name": "on_confirmWithoutOrderId", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_confirm\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_confirm" + ] + } + }, + "response": [] + }, + { + "name": "on_confirmWithoutFulfillmentState", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_confirm\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"1234\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_confirm" + ] + } + }, + "response": [] + }, + { + "name": "on_confirmInvalidFulfillmentState", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_confirm\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"1234\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"WAIT\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_confirm" + ] + } + }, + "response": [] + }, + { + "name": "on_confirmValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_confirm\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"SHIPPED\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_confirm" + ] + } + }, + "response": [] + }, + { + "name": "on_statusValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_status\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"SHIPPED\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_status", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_status" + ] + } + }, + "response": [] + }, + { + "name": "on_trackInvalidURL", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_track\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"tracking\": {\n \"url\": \"abc/tracking/201f6fa2-a2f7-42e7-a2e5-8947398747\",\n \"status\": \"ACTIVE\"\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_track", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_track" + ] + } + }, + "response": [] + }, + { + "name": "on_trackValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_track\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"tracking\": {\n \"url\": \"https://abc/tracking/201f6fa2-a2f7-42e7-a2e5-8947398747\",\n \"status\": \"ACTIVE\"\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_track", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_track" + ] + } + }, + "response": [] + }, + { + "name": "on_supportInvalid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_support\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"support\": {\n \"ref_id\": \"d4975df5-b18c-4772-80ad\"\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_support", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_support" + ] + } + }, + "response": [] + }, + { + "name": "on_supportValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_support\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"support\": {\n \"ref_id\": \"d4975df5-b18c-4772-80ad\",\n \"phone\": \"+919876543298\",\n \"email\": \"abcd.support@support.com\"\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_support", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_support" + ] + } + }, + "response": [] + }, + { + "name": "on_ratingValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_rating\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"feedback_form\": {\n \"form\": {\n \"url\": \"https://inds-network-bpp.becknprotocol.io/feedback/portal\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_rating" + ] + } + }, + "response": [] + }, + { + "name": "on_updateValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_update\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"SHIPPED\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_update", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_update" + ] + } + }, + "response": [] + }, + { + "name": "on_cancelInvalid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_cancel\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"SHIPPED\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_cancel", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_cancel" + ] + } + }, + "response": [] + }, + { + "name": "on_cancelValid", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"{{domain}}\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"on_cancel\",\n \"version\": \"{{version}}\",\n \"bap_id\": \"{{bap_id}}\",\n \"bap_uri\": \"{{bap_uri}}\",\n \"bpp_id\": \"{{bpp_id}}\",\n \"bpp_uri\": \"{{bpp_uri}}\",\n \"transaction_id\":\"8100d125-76a7-4588-88be-81b97657cd09\",\n \"message_id\":\"{{$randomUUID}}\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"provider\": {\n \"id\": \"af304e37-2a64-4d7d-b61c-8cbb79b48d9f\",\n \"descriptor\": {\n \"name\": \"WorldHikes\",\n \"images\": [{ \"url\": \"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcS_4CQBASVPFbCXIytAUZF7c00_dS-2bSmF1huQXWmnCg&s\" }],\n \"short_desc\": \"WorldHikes is dedicated to serving outdoor enthusiasts with top-quality trekking gear for their adventures around the globe. From premium sunglasses and ergonomic backpacks to efficient camping stoves and reliable headlamps, we ensure that every hiker is equipped with the best tools for their journey. Join us in exploring the world's most breathtaking trails!\"\n },\n \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ]\n },\n \"items\": [\n {\n \"id\": \"2e0c2b39-84d2-4b58-af8b-8b6d7b0c3f97\",\n \"descriptor\": {\n \"images\": [{ \"url\": \"https://m.media-amazon.com/images/I/61kQ4hs3LpL._AC_UY1100_.jpg\" }],\n \"name\": \"Adventure Sunglasses\",\n \"short_desc\": \"Experience the outdoors in style with our Adventure Sunglasses. These high-quality sunglasses provide UV protection and are designed for maximum comfort during your treks and hikes.\",\n \"long_desc\": \"Upgrade your outdoor adventures with our Adventure Sunglasses. Whether you're trekking through rugged terrain or relaxing at the campsite, these sunglasses offer superior UV protection and glare reduction. Featuring durable frames and polarized lenses, they provide clarity and comfort in any environment.
\"\n },\n \"matched\": true,\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n },\n \"price\": {\n \"listed_value\": \"999.0\",\n \"currency\": \"INR\",\n \"value\": \"999.0\"\n },\n \"recommended\": true,\n \"location_ids\": [\"1\"],\n \"category_ids\": [\"c1\"],\n \"fulfillment_ids\": [\"1\"],\n \"tags\": [\n {\n \"descriptor\": {\n \"name\": \"search-tags\"\n },\n \"list\": [\n {\n \"value\": \"sunglasses\"\n },\n {\n \"value\": \"adventure\"\n },\n {\n \"value\": \"UV protection\"\n },\n {\n \"value\": \"hiking\"\n },\n {\n \"value\": \"trekking\"\n },\n {\n \"value\": \"outdoor gear\"\n }\n ]\n }\n ]\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"110001\"\n },\n \"contact\": {\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Santosh Kumar\"\n },\n \"contact\": {\n \"phone\": \"6251423251\"\n }\n },\n \"state\": {\n \"descriptor\": {\n \"code\": \"SHIPPED\"\n }\n }\n }\n ],\n \"quote\": {\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2000.0\"\n },\n \"breakup\": [\n {\n \"title\": \"ITEM\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"1998.0\"\n }\n },\n {\n \"title\": \"TAX\",\n \"price\": {\n \"currency\": \"INR\",\n \"value\": \"2.0\"\n }\n }\n ],\n \"ttl\": \"PT5M\"\n },\n \"billing\": {\n \"name\": \"Santosh Kumar\",\n \"phone\": \"6251423251\",\n \"email\": \"santosh.k@gmail.com\",\n \"address\": \"151-e, janpath road,New Delhi, India\",\n \"city\": {\n \"name\": \"New Delhi\"\n },\n \"state\": {\n \"name\": \"Delhi\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"2000\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\"\n }\n }\n ],\n \"cancellation_terms\": [\n {\n \"cancel_by\": {\n \"label\": \"within 5 days\"\n },\n \"cancellation_fee\": {\n \"percentage\": \"5\" \n }\n }\n ],\n \"refund_terms\": [\n {\n \"refund_within\": {\n \"label\": \"within 5 days\"\n },\n \"refund_amount\": {\n \"currency\": \"IRN\",\n \"estimated_value\": \"200\"\n }\n }\n ],\n \"replacement_terms\": [\n {\n \"replace_within\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"return_terms\": [\n {\n \"return_time\": {\n \"label\": \"within 5 days\"\n }\n }\n ],\n \"cancellation\": {\n \"time\": \"2023-11-06T09:41:09.708Z\",\n \"cancelled_by\": \"CONSUMER\"\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_cancel", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_cancel" + ] + } + }, + "response": [] + } + ], + "event": [ + { + "listen": "prerequest", + "script": { + "type": "text/javascript", + "packages": {}, + "exec": [ + "" + ] + } + }, + { + "listen": "test", + "script": { + "type": "text/javascript", + "packages": {}, + "exec": [ + "" + ] + } + } + ], + "variable": [ + { + "key": "bap_id", + "value": "bap-ps-network-onix.becknprotocol.io", + "type": "string" + }, + { + "key": "bap_uri", + "value": "https://bap-ps-network-onix.becknprotocol.io", + "type": "string" + }, + { + "key": "bpp_id", + "value": "bpp-ps-network-onix.becknprotocol.io", + "type": "string" + }, + { + "key": "bpp_uri", + "value": "https://bpp-ps-network-onix.becknprotocol.io", + "type": "string" + }, + { + "key": "base_url", + "value": "https://bpp-ps-client-onix.becknprotocol.io", + "type": "string" + }, + { + "key": "domain", + "value": "localretail:shopping", + "type": "string" + }, + { + "key": "version", + "value": "1.1.0", + "type": "string" + } + ] +} \ No newline at end of file