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.
' type: object + additionalProperties: false properties: descriptor: $ref: '#/components/schemas/Descriptor' fulfillments: description: Fulfillment modes offered at the BPP level. This is used when a BPP itself offers fulfillments on behalf of the providers it has onboarded. type: array + minItems: 1 items: $ref: '#/components/schemas/Fulfillment' payments: @@ -894,8 +1070,44 @@ components: $ref: '#/components/schemas/Offer' providers: type: array + minItems: 1 items: - $ref: '#/components/schemas/Provider' + allOf: + - $ref: '#/components/schemas/Provider' + - properties: + items: + type: array + items: + allOf: + - $ref: '#/components/schemas/Item' + - properties: + descriptor: + allOf: + - $ref: '#/components/schemas/Descriptor' + required: + - name + - images + - short_desc + - long_desc + required: + - id + - descriptor + - price + - category_ids + - fulfillment_ids + descriptor: + allOf: + - $ref: '#/components/schemas/Descriptor' + required: + - name + - images + - short_desc + - long_desc + required: + - id + - categories + - descriptor + - items exp: description: Timestamp after which catalog will expire type: string @@ -903,9 +1115,12 @@ components: ttl: description: Duration in seconds after which this catalog will expire type: string + required: + - providers Category: description: A label under which a collection of items can be grouped. type: object + additionalProperties: false properties: id: description: ID of the category @@ -913,7 +1128,28 @@ components: parent_category_id: $ref: '#/components/schemas/Category/properties/id' descriptor: - $ref: '#/components/schemas/Descriptor' + allOf: + - $ref: '#/components/schemas/Descriptor' + - properties: + code: + type: string + enum: + - ELECTRONICS + - FASHION + - GROCERIES + - SNACKS + - DESSERTS + - BEAUTY_AND_PERSONAL_CARE + - FURNITURE + - SPORTS + - TOYS_GAMES + - STATIONERY + - HEALTHCARE + - TRAVEL_AND_LUGGAGE + - CRAFTS + - HOUSEHOLD_ESSENTIALS + - PET + - GIFTS time: $ref: '#/components/schemas/Time' ttl: @@ -925,6 +1161,7 @@ components: Circle: description: Describes a circular region of a specified radius centered at a specified GPS coordinate. type: object + additionalProperties: false properties: gps: $ref: '#/components/schemas/Gps' @@ -933,6 +1170,7 @@ components: City: description: Describes a city type: object + additionalProperties: false properties: name: description: Name of the city @@ -943,6 +1181,7 @@ components: Contact: description: Describes the contact information of an entity type: object + additionalProperties: false properties: phone: type: string @@ -954,6 +1193,7 @@ components: Context: description: 'Every API call in beckn protocol has a context. It provides a high-level overview to the receiver about the nature of the intended transaction. Typically, it is the BAP that sets the transaction context based on the consumer''s location and action on their UI. But sometimes, during unsolicited callbacks, the BPP also sets the transaction context but it is usually the same as the context of a previous full-cycle, request-callback interaction between the BAP and the BPP. The context object contains four types of fields.
  1. Demographic information about the transaction using fields like `domain`, `country`, and `region`.
  2. Addressing details like the sending and receiving platform''s ID and API URL.
  3. Interoperability information like the protocol version that implemented by the sender and,
  4. Transaction details like the method being called at the receiver''s endpoint, the transaction_id that represents an end-to-end user session at the BAP, a message ID to pair requests with callbacks, a timestamp to capture sending times, a ttl to specifiy the validity of the request, and a key to encrypt information if necessary.
This object must be passed in every interaction between a BAP and a BPP. In HTTP/S implementations, it is not necessary to send the context during the synchronous response. However, in asynchronous protocols, the context must be sent during all interactions,' type: object + additionalProperties: false properties: domain: description: Domain code that is relevant to this transaction context @@ -963,6 +1203,9 @@ components: description: The location where the transaction is intended to be fulfilled. allOf: - $ref: '#/components/schemas/Location' + required: + - country + - city action: description: The Beckn protocol method being called by the sender and executed at the receiver. type: string @@ -974,6 +1217,8 @@ components: allOf: - description: 'A globally unique identifier of the platform, Typically it is the fully qualified domain name (FQDN) of the platform.' type: string + not: + format: uri bap_uri: description: Subscriber URL of the BAP for accepting callbacks from BPPs. allOf: @@ -1014,9 +1259,11 @@ components: - bap_uri - transaction_id - message_id + - ttl Country: description: Describes a country type: object + additionalProperties: false properties: name: type: string @@ -1027,6 +1274,7 @@ components: Credential: description: Describes a credential of an entity - Person or Organization type: object + additionalProperties: false properties: id: type: string @@ -1040,6 +1288,7 @@ components: Customer: description: Describes a customer buying/availing a product or a service type: object + additionalProperties: false properties: person: $ref: '#/components/schemas/Person' @@ -1052,6 +1301,7 @@ components: Descriptor: description: Physical description of something. type: object + additionalProperties: false properties: name: type: string @@ -1083,6 +1333,7 @@ components: Domain: description: 'Described the industry sector or sub-sector. The network policy should contain codes for all the industry sectors supported by the network. Domains can be created in varying levels of granularity. The granularity of a domain can be decided by the participants of the network. Too broad domains will result in irrelevant search broadcast calls to BPPs that don''t have services supporting the domain. Too narrow domains will result in a large number of registry entries for each BPP. It is recommended that network facilitators actively collaborate with various working groups and network participants to carefully choose domain codes keeping in mind relevance, performance, and opportunity cost. It is recommended that networks choose broad domains like mobility, logistics, healthcare etc, and progressively granularize them as and when the number of network participants for each domain grows large.' type: object + additionalProperties: false properties: name: description: Name of the domain @@ -1102,6 +1353,7 @@ components: Error: description: 'Describes an error object that is returned by a BAP, BPP or BG as a response or callback to an action by another network participant. This object is sent when any request received by a network participant is unacceptable. This object can be sent either during Ack or with the callback.' type: object + additionalProperties: false properties: code: type: string @@ -1115,6 +1367,7 @@ components: Fee: description: A fee applied on a particular entity type: object + additionalProperties: false properties: percentage: description: Percentage of a value @@ -1127,6 +1380,7 @@ components: Form: description: Describes a form type: object + additionalProperties: false properties: url: description: 'The URL from where the form can be fetched. The content fetched from the url must be processed as per the mime_type specified in this object. Once fetched, the rendering platform can choosed to render the form as-is as an embeddable element; or process it further to blend with the theme of the application. In case the interface is non-visual, the the render can process the form data and reproduce it as per the standard specified in the form.' @@ -1149,6 +1403,7 @@ components: Fulfillment: description: Describes how a an order will be rendered/fulfilled to the end-customer type: object + additionalProperties: false properties: id: description: Unique reference ID to the fulfillment of an order @@ -1202,12 +1457,14 @@ components: FulfillmentState: description: Describes the state of fulfillment type: object + additionalProperties: false properties: descriptor: allOf: - $ref: '#/components/schemas/Descriptor' - properties: code: + type: string enum: - INITIATED - ACKNOWLEDGED @@ -1216,7 +1473,6 @@ components: - OUT_FOR_DELIVERY - DELIVERED - CANCELLED - updated_at: type: string format: date-time @@ -1230,6 +1486,7 @@ components: Image: description: Describes an image type: object + additionalProperties: false properties: url: description: URL to the image. This can be a data url or an remote url @@ -1251,9 +1508,12 @@ components: height: description: Height of the image in pixels type: string + required: + - url Intent: description: 'The intent to buy or avail a product or a service. The BAP can declare the intent of the consumer containing
This has properties like descriptor,provider,fulfillment,payment,category,offer,item,tags
This is typically used by the BAP to send the purpose of the user''s search to the BPP. This will be used by the BPP to find products or services it offers that may match the user''s intent.
For example, in Mobility, the mobility consumer declares a mobility intent. In this case, the mobility consumer declares information that describes various aspects of their journey like,
For example, in health domain, a consumer declares the intent for a lab booking the describes various aspects of their booking like,' type: object + additionalProperties: false properties: descriptor: description: 'A raw description of the search intent. Free text search strings, raw audio, etc can be sent in this object.' @@ -1290,6 +1550,7 @@ components: ItemQuantity: description: Describes the count or amount of an item type: object + additionalProperties: false properties: allocated: description: This represents the exact quantity allocated for purchase of the item. @@ -1349,6 +1610,7 @@ components: Item: description: 'Describes a product or a service offered to the end consumer by the provider. In the mobility sector, it can represent a fare product like one way journey. In the logistics sector, it can represent the delivery service offering. In the retail domain it can represent a product like a grocery item.' type: object + additionalProperties: false properties: id: description: ID of the item. @@ -1365,6 +1627,26 @@ components: description: Physical description of the item allOf: - $ref: '#/components/schemas/Descriptor' + - properties: + code: + type: string + enum: + - ELECTRONICS + - FASHION + - GROCERIES + - SNACKS + - DESSERTS + - BEAUTY_AND_PERSONAL_CARE + - FURNITURE + - SPORTS + - TOYS_GAMES + - STATIONERY + - HEALTHCARE + - TRAVEL_AND_LUGGAGE + - CRAFTS + - HOUSEHOLD_ESSENTIALS + - PET + - GIFTS creator: description: The creator of this item allOf: @@ -1430,6 +1712,9 @@ components: - $ref: '#/components/schemas/Time' refund_amount: $ref: '#/components/schemas/Price' + required: + - refund_within + - refund_amount replacement_terms: description: Terms that are applicable be met when this item is replaced type: array @@ -1471,9 +1756,38 @@ components: type: array items: $ref: '#/components/schemas/TagGroup' + BPPItem: + allOf: + - $ref: '#/components/schemas/Item' + - anyOf: + - not: + properties: + descriptor: + properties: + code: + enum: + - ELECTRONICS + - properties: + descriptor: + properties: + code: + enum: + - ELECTRONICS + add_ons: + type: array + items: + type: object + properties: + descriptor: + type: object + properties: + code: + enum: + - USER_MANUAL Location: description: The physical location of something type: object + additionalProperties: false properties: id: type: string @@ -1523,6 +1837,7 @@ components: MediaFile: description: This object contains a url to a media file. type: object + additionalProperties: false properties: mimetype: description: 'indicates the nature and format of the document, file, or assortment of bytes. MIME types are defined and standardized in IETF''s RFC 6838' @@ -1540,6 +1855,7 @@ components: Offer: description: An offer associated with a catalog. This is typically used to promote a particular product and enable more purchases. type: object + additionalProperties: false properties: id: type: string @@ -1566,6 +1882,7 @@ components: Option: description: Describes a selectable option type: object + additionalProperties: false properties: id: type: string @@ -1574,6 +1891,7 @@ components: Order: description: Describes a legal purchase order. It contains the complete details of the legal contract created between the buyer and the seller. type: object + additionalProperties: false properties: id: type: string @@ -1607,6 +1925,7 @@ components: items: description: The items purchased / availed in this order type: array + minItems: 1 items: $ref: '#/components/schemas/Item' add_ons: @@ -1626,6 +1945,7 @@ components: fulfillments: description: The fulfillments involved in completing this order type: array + minItems: 1 items: $ref: '#/components/schemas/Fulfillment' cancellation: @@ -1677,9 +1997,104 @@ components: type: array items: $ref: '#/components/schemas/TagGroup' + BAPOrder: + description: Describes the order details from the perspective of the BAP. Contains the order details sent from a BAP to BPP. + allOf: + - $ref: '#/components/schemas/Order' + - properties: + provider: + allOf: + - $ref: '#/components/schemas/Provider' + required: + - id + items: + type: array + minItems: 1 + items: + allOf: + - $ref: '#/components/schemas/Item' + required: + - id + fulfillments: + type: array + minItems: 1 + items: + allOf: + - $ref: '#/components/schemas/Fulfillment' + required: + - id + required: + - provider + - items + - fulfillments + BPPOrder: + description: Describes the order details from the perspective of the BPP. Contains the order details sent from a BPP to BAP. + allOf: + - $ref: '#/components/schemas/Order' + - properties: + provider: + allOf: + - $ref: '#/components/schemas/Provider' + - properties: + descriptor: + allOf: + - $ref: '#/components/schemas/Descriptor' + - properties: + images: + type: array + minItems: 1 + items: + $ref: '#/components/schemas/Image' + required: + - name + - images + - short_desc + required: + - id + - descriptor + items: + type: array + items: + allOf: + - $ref: '#/components/schemas/BPPItem' + - properties: + descriptor: + allOf: + - $ref: '#/components/schemas/Descriptor' + - properties: + images: + type: array + minItems: 1 + items: + $ref: '#/components/schemas/Image' + required: + - name + - images + - short_desc + price: + allOf: + - $ref: '#/components/schemas/Price' + required: + - currency + - value + required: + - id + - descriptor + - price + fulfillments: + type: array + items: + required: + - id + - type + required: + - provider + - items + - fulfillments Organization: description: An organization. Usually a recognized business entity. type: object + additionalProperties: false properties: descriptor: $ref: '#/components/schemas/Descriptor' @@ -1700,6 +2115,7 @@ components: Payment: description: 'Describes the terms of settlement between the BAP and the BPP for a single transaction. When instantiated, this object contains
  1. the amount that has to be settled,
  2. The payment destination destination details
  3. When the settlement should happen, and
  4. A transaction reference ID
. During a transaction, the BPP reserves the right to decide the terms of payment. However, the BAP can send its terms to the BPP first. If the BPP does not agree to those terms, it must overwrite the terms and return them to the BAP. If overridden, the BAP must either agree to the terms sent by the BPP in order to preserve the provider''s autonomy, or abort the transaction. In case of such disagreements, the BAP and the BPP can perform offline negotiations on the payment terms. Once an agreement is reached, the BAP and BPP can resume transactions.' type: object + additionalProperties: false properties: id: description: ID of the payment term that can be referred at an item or an order level in a catalog @@ -1738,6 +2154,9 @@ components: type: string source_virtual_payment_address: type: string + required: + - amount + - currency type: type: string enum: @@ -1756,9 +2175,15 @@ components: type: array items: $ref: '#/components/schemas/TagGroup' + required: + - id + - collected_by + - type + - status Person: description: Describes a person as any individual type: object + additionalProperties: false properties: id: type: string @@ -1814,6 +2239,7 @@ components: Price: description: Describes the price of a product or service type: object + additionalProperties: false properties: currency: type: string @@ -1834,6 +2260,7 @@ components: Provider: description: Describes the catalog of a business. type: object + additionalProperties: false properties: id: type: string @@ -1849,6 +2276,7 @@ components: $ref: '#/components/schemas/Time' categories: type: array + minItems: 1 items: $ref: '#/components/schemas/Category' fulfillments: @@ -1869,6 +2297,7 @@ components: $ref: '#/components/schemas/Offer' items: type: array + minItems: 1 items: $ref: '#/components/schemas/Item' exp: @@ -1889,6 +2318,7 @@ components: Quotation: description: 'Describes a quote. It is the estimated price of products or services from the BPP.
This has properties like price, breakup, ttl' type: object + additionalProperties: false properties: id: description: ID of the quote. @@ -1898,9 +2328,13 @@ components: description: The total quoted price allOf: - $ref: '#/components/schemas/Price' + required: + - currency + - value breakup: description: the breakup of the total quoted price type: array + minItems: 1 items: type: object properties: @@ -1916,12 +2350,24 @@ components: - MISC - DISCOUNT price: - $ref: '#/components/schemas/Price' + allOf: + - $ref: '#/components/schemas/Price' + required: + - currency + - value + required: + - title + - price ttl: $ref: '#/components/schemas/Duration' + required: + - price + - breakup + - ttl Rating: description: Describes the rating of an entity type: object + additionalProperties: false properties: rating_category: description: Category of the entity being rated @@ -1939,9 +2385,14 @@ components: value: description: 'Rating value given to the object. This can be a single value or can also contain an inequality operator like gt, gte, lt, lte. This can also contain an inequality expression containing logical operators like && and ||.' type: string + required: + - rating_category + - id + - value Region: description: Describes an arbitrary region of space. The network policy should contain a published list of supported regions by the network. type: object + additionalProperties: false properties: dimensions: description: 'The number of dimensions that are used to describe any point inside that region. The most common dimensionality of a region is 2, that represents an area on a map. There are regions on the map that can be approximated to one-dimensional regions like roads, railway lines, or shipping lines. 3 dimensional regions are rarer, but are gaining popularity as flying drones are being adopted for various fulfillment services.' @@ -1968,6 +2419,7 @@ components: ReplacementTerm: description: The replacement policy of an item or an order type: object + additionalProperties: false properties: fulfillment_state: description: The state of fulfillment during which this term is applicable. @@ -1979,9 +2431,12 @@ components: - $ref: '#/components/schemas/Time' external_ref: $ref: '#/components/schemas/MediaFile' + required: + - replace_within ReturnTerm: description: Describes the return policy of an item or an order type: object + additionalProperties: false properties: fulfillment_state: description: The state of fulfillment during which this term IETF''s applicable. @@ -2004,9 +2459,12 @@ components: enum: - CONSUMER - PROVIDER + required: + - return_time Scalar: description: Describes a scalar type: object + additionalProperties: false properties: type: type: string @@ -2031,6 +2489,7 @@ components: Schedule: description: 'Describes schedule as a repeating time period used to describe a regularly recurring event. At a minimum a schedule will specify frequency which describes the interval between occurrences of the event. Additional information can be provided to specify the schedule more precisely. This includes identifying the timestamps(s) of when the event will take place. Schedules may also have holidays to exclude a specific day from the schedule.
This has properties like frequency, holidays, times' type: object + additionalProperties: false properties: frequency: $ref: '#/components/schemas/Duration' @@ -2047,6 +2506,7 @@ components: State: description: A bounded geopolitical region of governance inside a country. type: object + additionalProperties: false properties: name: type: string @@ -2057,6 +2517,7 @@ components: Stop: description: A logical point in space and time during the fulfillment of an order. type: object + additionalProperties: false properties: id: type: string @@ -2090,24 +2551,28 @@ components: Support: description: Details of customer support type: object + additionalProperties: false properties: ref_id: type: string callback_phone: type: string - format: phone + pattern: '^\+?[1-9]\d{1,14}$' phone: type: string - format: phone + pattern: '^\+?[1-9]\d{1,14}$' email: type: string format: email url: type: string format: uri + required: + - ref_id Tag: description: 'Describes a tag. This is used to contain extended metadata. This object can be added as a property to any schema to describe extended attributes. For BAPs, tags can be sent during search to optimize and filter search results. BPPs can use tags to index their catalog to allow better search functionality. Tags are sent by the BPP as part of the catalog response in the `on_search` callback. Tags are also meant for display purposes. Upon receiving a tag, BAPs are meant to render them as name-value pairs. This is particularly useful when rendering tabular information about a product or service.' type: object + additionalProperties: false properties: descriptor: description: 'Description of the Tag, can be used to store detailed information.' @@ -2122,6 +2587,7 @@ components: TagGroup: description: 'A collection of tag objects with group level attributes. For detailed documentation on the Tags and Tag Groups schema go to https://github.com/beckn/protocol-specifications/discussions/316' type: object + additionalProperties: false properties: display: description: 'Indicates the display properties of the tag group. If display is set to false, then the group will not be displayed. If it is set to true, it should be displayed. However, group-level display properties can be overriden by individual tag-level display property. As this schema is purely for catalog display purposes, it is not recommended to send this value during search.' @@ -2139,6 +2605,7 @@ components: Time: description: 'Describes time in its various forms. It can be a single point in time; duration; or a structured timetable of operations
This has properties like label, time stamp,duration,range, days, schedule' type: object + additionalProperties: false properties: label: type: string @@ -2164,6 +2631,7 @@ components: Tracking: description: Contains tracking information that can be used by the BAP to track the fulfillment of an order in real-time. which is useful for knowing the location of time sensitive deliveries. type: object + additionalProperties: false properties: id: description: A unique tracking reference number @@ -2185,6 +2653,7 @@ components: Vehicle: description: 'Describes a vehicle is a device that is designed or used to transport people or cargo over land, water, air, or through space.
This has properties like category, capacity, make, model, size,variant,color,energy_type,registration' type: object + additionalProperties: false properties: category: type: string @@ -2217,6 +2686,7 @@ components: XInput: description: 'Contains any additional or extended inputs required to confirm an order. This is typically a Form Input. Sometimes, selection of catalog elements is not enough for the BPP to confirm an order. For example, to confirm a flight ticket, the airline requires details of the passengers along with information on baggage, identity, in addition to the class of ticket. Similarly, a logistics company may require details on the nature of shipment in order to confirm the shipping. A recruiting firm may require additional details on the applicant in order to confirm a job application. For all such purposes, the BPP can choose to send this object attached to any object in the catalog that is required to be sent while placing the order. This object can typically be sent at an item level or at the order level. The item level XInput will override the Order level XInput as it indicates a special requirement of information for that particular item. Hence the BAP must render a separate form for the Item and another form at the Order level before confirmation.' type: object + additionalProperties: false properties: form: $ref: '#/components/schemas/Form' diff --git a/api/l2-config/postman-collection-test-cases/BAP/Retail-with-layer2.postman_collection.json b/api/l2-config/postman-collection-test-cases/BAP/Retail-with-layer2.postman_collection.json new file mode 100644 index 0000000..f22435f --- /dev/null +++ b/api/l2-config/postman-collection-test-cases/BAP/Retail-with-layer2.postman_collection.json @@ -0,0 +1,1315 @@ +{ + "info": { + "_postman_id": "08baa776-8205-4b97-841a-75cf5a423f69", + "name": "Retail-with-layer2", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "30848972" + }, + "item": [ + { + "name": "SearchWithInvalidDomain", + "request": { + "method": "POST", + "header": [], + "body": { + "mode": "raw", + "raw": "{\n \"context\": {\n \"domain\": \"wrongdomain\",\n \"location\": {\n \"country\": {\n \"code\": \"IND\"\n },\n \"city\": {\n \"code\": \"std:080\"\n }\n },\n \"action\": \"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 \"intent\": {\n \"item\": {\n \"descriptor\": {\n \"name\": \"earphone\"\n }\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "SearchWithAnInvalidAction", + "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\": \"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 \"intent\": {\n \"item\": {\n \"descriptor\": {\n \"name\": \"earphone\"\n }\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "SearchWithoutversion", + "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\": \"search\",\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 \"intent\": {\n \"item\": {\n \"descriptor\": {\n \"name\": \"earphone\"\n }\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"intent\": {\n \"category\": {\n \"descriptor\": {\n \"code\": \"testcode\"\n }\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"intent\": {\n \"item\": {\n \"descriptor\": {\n \"name\": \"Earphone\"\n }\n },\n \"fulfillment\": {\n \"type\": \"Delivery\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"28.4594965,77.0266383\"\n }\n }\n ]\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "Search_valid", + "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\": \"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 \"intent\": {\n \"category\": {\n \"descriptor\": {\n \"code\": \"ELECTRONICS\"\n }\n },\n \"item\": {\n \"descriptor\": {\n \"name\": \"earphone\"\n }\n },\n \"fulfillment\": {\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"28.4594965,77.0266383\"\n }\n }\n ]\n }\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/search", + "host": [ + "{{base_url}}" + ], + "path": [ + "search" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithoutOrderType", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithoutProvider", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithoutItems", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithoutFulfillments", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithExtraUndefinedField", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillment\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "SelectWithExtraUndefinedField2", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ],\n \"extrafield\": \"test\"\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"{{$timestamp}}\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\"\n }\n }\n ]\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/select", + "host": [ + "{{base_url}}" + ], + "path": [ + "select" + ] + } + }, + "response": [] + }, + { + "name": "InitWithoutBilling", + "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\": \"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\": \"2023-11-06T09:45:40.407Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/init", + "host": [ + "{{base_url}}" + ], + "path": [ + "init" + ] + } + }, + "response": [] + }, + { + "name": "InitWithIncorrectBillingObject", + "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\": \"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\": \"2023-11-06T09:45:40.407Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billings\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n }\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/init", + "host": [ + "{{base_url}}" + ], + "path": [ + "init" + ] + } + }, + "response": [] + }, + { + "name": "InitWithoutItems", + "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\": \"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\": \"2023-11-06T09:45:40.407Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n }\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/init", + "host": [ + "{{base_url}}" + ], + "path": [ + "init" + ] + } + }, + "response": [] + }, + { + "name": "InitWithoutFulfillments", + "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\": \"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\": \"2023-11-06T09:45:40.407Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n }\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/init", + "host": [ + "{{base_url}}" + ], + "path": [ + "init" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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\": \"2023-11-06T09:45:40.407Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n }\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/init", + "host": [ + "{{base_url}}" + ], + "path": [ + "init" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentObject", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n }\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"1500\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentType", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"1500\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentCollectedBy", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"params\": {\n \"amount\": \"1500\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentAmount", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "ConfirmWithoutPaymentCurrency", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"f1\",\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"1500\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.280Z\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"provider\": {\n \"id\": \"./retail.kirana/ind.blr/33@tourism-bpp-infra2.becknprotocol.io.provider\"\n },\n \"items\": [\n {\n \"id\": \"./retail.kirana/ind.blr/247@tourism-bpp-infra2.becknprotocol.io.item\",\n \"quantity\": {\n \"selected\": {\n \"count\": 2\n }\n }\n }\n ],\n \"fulfillments\": [\n {\n \"type\": \"HOME_DELIVERY\",\n \"stops\": [\n {\n \"location\": {\n \"gps\": \"13.2008459,77.708736\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n },\n \"country\": {\n \"code\": \"IND\"\n },\n \"area_code\": \"75001\"\n },\n \"contact\": {\n \"phone\": \"919246394908\",\n \"email\": \"nc.rehman@gmail.com\"\n }\n }\n ],\n \"customer\": {\n \"person\": {\n \"name\": \"Motiur Rehman\"\n },\n \"contact\": {\n \"phone\": \"919122343344\"\n }\n }\n }\n ],\n \"billing\": {\n \"name\": \"Motiur Rehman\",\n \"phone\": \"9191223433\",\n \"email\": \"nc.rehman@gmail.com\",\n \"address\": \"123, Terminal 1, Kempegowda Int'l Airport Rd, A - Block, Gangamuthanahalli, Karnataka 560300, India\",\n \"city\": {\n \"name\": \"Gangamuthanahalli\"\n },\n \"state\": {\n \"name\": \"Karnataka\"\n }\n },\n \"payments\": [\n {\n \"id\": \"1234\",\n \"status\": \"PAID\",\n \"type\": \"PRE_FULFILLMENT\",\n \"collected_by\": \"SELLER\",\n \"params\": {\n \"amount\": \"1500\",\n \"currency\": \"INR\",\n \"bank_code\": \"INB0004321\",\n \"bank_account_number\": \"1234002341\",\n \"transaction_id\": \"jhdasjd8ee783\"\n }\n }\n ]\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/confirm", + "host": [ + "{{base_url}}" + ], + "path": [ + "confirm" + ] + } + }, + "response": [] + }, + { + "name": "StatusWithWrongKey", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"orderid\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/status", + "host": [ + "{{base_url}}" + ], + "path": [ + "status" + ] + } + }, + "response": [] + }, + { + "name": "StatusWithExtraField", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"extrafield\": \"true\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/status", + "host": [ + "{{base_url}}" + ], + "path": [ + "status" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/status", + "host": [ + "{{base_url}}" + ], + "path": [ + "status" + ] + } + }, + "response": [] + }, + { + "name": "SupportWithoutRefId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"callback_phone\": \"+914444444444\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/support", + "host": [ + "{{base_url}}" + ], + "path": [ + "support" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ref_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"callback_phone\": \"+914444444444\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/support", + "host": [ + "{{base_url}}" + ], + "path": [ + "support" + ] + } + }, + "response": [] + }, + { + "name": "UpdateWithoutTarget", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\":\"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"fulfillments\": [\n {\n \"customer\": {\n \"contact\": {\n \"phone\": \"+91-8056475647\"\n }\n }\n }\n ]\n }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/update", + "host": [ + "{{base_url}}" + ], + "path": [ + "update" + ] + } + }, + "response": [] + }, + { + "name": "UpdateWithoutOrderId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"fulfillments\": [\n {\n \"customer\": {\n \"contact\": {\n \"phone\": \"+91-8056475647\"\n }\n }\n }\n ]\n },\n \"update_target\": \"order.fulfillment.customer.contact.phone\"\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/update", + "host": [ + "{{base_url}}" + ], + "path": [ + "update" + ] + } + }, + "response": [] + }, + { + "name": "UpdateWithoutOrderObject", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"update_target\": \"order.fulfillment.customer.contact.phone\"\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/update", + "host": [ + "{{base_url}}" + ], + "path": [ + "update" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order\": {\n \"type\": \"DEFAULT\",\n \"id\":\"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"fulfillments\": [\n {\n \"customer\": {\n \"contact\": {\n \"phone\": \"+91-8056475647\"\n }\n }\n }\n ]\n },\n \"update_target\": \"order.fulfillment.customer.contact.phone\"\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/update", + "host": [ + "{{base_url}}" + ], + "path": [ + "update" + ] + } + }, + "response": [] + }, + { + "name": "TrackWithoutOrderId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"callback_url\": \"https://abc.com\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/track", + "host": [ + "{{base_url}}" + ], + "path": [ + "track" + ] + } + }, + "response": [] + }, + { + "name": "TrackWithWrongFieldName", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"orderid\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/track", + "host": [ + "{{base_url}}" + ], + "path": [ + "track" + ] + } + }, + "response": [] + }, + { + "name": "TrackWithExtraFields", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"callback_url\": \"https://abc.com\",\n \"extra\": \"true\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/track", + "host": [ + "{{base_url}}" + ], + "path": [ + "track" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"callback_url\": \"https://abc.com\"\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/track", + "host": [ + "{{base_url}}" + ], + "path": [ + "track" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithInvalidStructure", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": {\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"rating_category\": \"Order\",\n \"value\": \"8\"\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithEmptyArray", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": []\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithoutId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": [\n {\n \"rating_category\": \"ORDER\",\n \"value\": \"8\"\n }\n ]\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithoutCategory", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": [\n {\n \"id\": \"1234\",\n \"value\": \"8\"\n }\n ]\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithoutValue", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": [\n {\n \"id\": \"1234\",\n \"rating_category\": \"ORDER\"\n }\n ]\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "RatingWithInvalidCategory", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": [\n {\n \"id\": \"1234\",\n \"value\": \"8\",\n \"rating_category\": \"MISC\"\n }\n ]\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"ratings\": [\n {\n \"id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"rating_category\": \"ORDER\",\n \"value\": \"8\"\n }\n ]\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/rating", + "host": [ + "{{base_url}}" + ], + "path": [ + "rating" + ] + } + }, + "response": [] + }, + { + "name": "CancelWithoutOrderId", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"cancellation_reason_id\": \"4\",\n \"descriptor\": {\n \"short_desc\": \"Order delayed\"\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/cancel", + "host": [ + "{{base_url}}" + ], + "path": [ + "cancel" + ] + } + }, + "response": [] + }, + { + "name": "CancelWithInvalidfieldName", + "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"orderid\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"cancellation_reason_id\": \"4\",\n \"descriptor\": {\n \"short_desc\": \"Order delayed\"\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/cancel", + "host": [ + "{{base_url}}" + ], + "path": [ + "cancel" + ] + } + }, + "response": [] + }, + { + "name": "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\": \"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 \"message_id\": \"{{$randomUUID}}\",\n \"transaction_id\": \"8100d125-76a7-4588-88be-81b97657cd09\",\n \"timestamp\": \"2023-11-06T10:14:10.295Z\",\n \"ttl\": \"PT10M\"\n },\n \"message\": {\n \"order_id\": \"b989c9a9-f603-4d44-b38d-26fd72286b38\",\n \"cancellation_reason_id\": \"4\",\n \"descriptor\": {\n \"short_desc\": \"Order delayed\"\n }\n }\n }", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/cancel", + "host": [ + "{{base_url}}" + ], + "path": [ + "cancel" + ] + } + }, + "response": [] + } + ], + "event": [ + { + "listen": "prerequest", + "script": { + "type": "text/javascript", + "exec": [ + "" + ] + } + }, + { + "listen": "test", + "script": { + "type": "text/javascript", + "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://bap-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 diff --git a/api/l2-config/postman-collection-test-cases/BPP/Retail-with-layer2-reverse.postman_collection.json b/api/l2-config/postman-collection-test-cases/BPP/Retail-with-layer2-reverse.postman_collection.json new file mode 100644 index 0000000..15d7515 --- /dev/null +++ b/api/l2-config/postman-collection-test-cases/BPP/Retail-with-layer2-reverse.postman_collection.json @@ -0,0 +1,1005 @@ +{ + "info": { + "_postman_id": "8ab9f7dc-732f-4ec6-8626-aab18bc72e7d", + "name": "Retail-with-layer2-reverse", + "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json", + "_exporter_id": "30848972" + }, + "item": [ + { + "name": "on_searchWithoutProviderArray", + "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 }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchEmptyProvidersArray", + "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 }\n }\n}", + "options": { + "raw": { + "language": "json" + } + } + }, + "url": { + "raw": "{{base_url}}/on_search", + "host": [ + "{{base_url}}" + ], + "path": [ + "on_search" + ] + } + }, + "response": [] + }, + { + "name": "on_searchWihtoutTheRequiredFieldsInProvider", + "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 \"locations\": [\n {\n \"id\": \"1\",\n \"gps\": \"12.936938,77.695088\"\n }\n ],\n \"fulfillments\": [\n {\n \"id\": \"1\",\n \"type\": \"HOME_DELIVERY\"\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_searchWithInvalidImageFormat", + "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\": \"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_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