Libraries:
implementation 'com.mcxiaoke.volley:library:1.0.19'implementation 'com.github.bumptech.glide:glide:4.9.0'
MainActivity.java
package com.example.myapplication;
import android.app.ProgressDialog;
import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Log;
import android.view.Surface;
import android.widget.GridView;
import android.widget.ListView;
import com.android.volley.DefaultRetryPolicy;
import com.android.volley.Request;
import com.android.volley.RequestQueue;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.VolleyLog;
import com.android.volley.toolbox.JsonObjectRequest;
import com.android.volley.toolbox.Volley;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import java.util.ArrayList;
import java.util.List;
import java.util.Timer;
import java.util.TimerTask;
public class MainActivity extends AppCompatActivity {
GridView ListView;
VolleyListViewAdapter adapter;
private List<CommonBean> VolleyList = new ArrayList<CommonBean>();
private ProgressDialog mprocessingdialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
ListView = (GridView) findViewById(R.id.ListView);
adapter = new VolleyListViewAdapter(MainActivity.this, VolleyList);
ListView.setAdapter(adapter);
new MainActivity.GetListAsync().execute();
}
private class GetListAsync extends AsyncTask<Void, Void, Void> {
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
super.onPreExecute();
mprocessingdialog = new ProgressDialog(MainActivity.this);
mprocessingdialog.setTitle("Please Wait..");
mprocessingdialog.setMessage("Loading");
mprocessingdialog.setIndeterminate(false);
mprocessingdialog.setCancelable(false);
mprocessingdialog.show();
}
@Override
protected Void doInBackground(Void... arg0) {
// TODO Auto-generated method stub
JsonObjectRequest jsonObjReq = new JsonObjectRequest(
Request.Method.GET, "https://api.fnpplus.com/productapi/api/rest/v1.2/productList?catalogId=india",
new Response.Listener<JSONObject>() {
@Override
public void onResponse(JSONObject response) {
Log.d("rlog", response.toString());
try {
JSONObject jsonObj = new JSONObject(response.toString());
JSONObject jsonObject = jsonObj.getJSONObject("data");
JSONArray jsonArray = jsonObject.getJSONArray("productResults");
Log.d("rlog", jsonArray.toString());
for (int i = 0; i < jsonArray.length(); i++) {
JSONObject obj = jsonArray.getJSONObject(i);
CommonBean commonBean = new CommonBean();
commonBean.setTextView1(obj.optString("productName"));
JSONObject jsonObject2 = obj.getJSONObject("price");
Log.d("rlog1", jsonObject2.toString());
commonBean.setTextView2(jsonObject2.optString("price"));
Log.d("rlog12", jsonObject2.optString("price"));
JSONObject jsonObject1 = obj.getJSONObject("productImage");
Log.d("rlog1", jsonObject1.toString());
commonBean.setImageView(jsonObject1.optString("path"));
Log.d("rlog12", jsonObject1.optString("path"));
VolleyList.add(commonBean);
}
mprocessingdialog.dismiss();
} catch (Exception e) {
e.printStackTrace();
}
adapter.notifyDataSetChanged();
}
}, new Response.ErrorListener() {
@Override
public void onErrorResponse(VolleyError error) {
VolleyLog.d("rlog", "Error: " + error.getMessage());
}
});
jsonObjReq.setRetryPolicy(new DefaultRetryPolicy(0, DefaultRetryPolicy.DEFAULT_MAX_RETRIES, DefaultRetryPolicy.DEFAULT_BACKOFF_MULT));
RequestQueue requestQueue = Volley.newRequestQueue(MainActivity.this);
requestQueue.add(jsonObjReq);
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
new Timer().schedule(new TimerTask() {
@Override
public void run() {
mprocessingdialog.dismiss();
}
}, 30000);
}
}
}
VolleyListViewAdapter.java
package com.example.myapplication;
import android.app.Activity;
import android.content.Context;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
import com.bumptech.glide.Glide;
import java.util.List;
public class VolleyListViewAdapter extends BaseAdapter {
private Activity activity;
private LayoutInflater inflater;
List<CommonBean> VolleyList;
public VolleyListViewAdapter(Activity activity, List<CommonBean> VolleyList) {
this.activity = activity;
this.VolleyList = VolleyList;
}
public class ViewHolder {
ImageView ImageView;
TextView TextView1;
TextView TextView2;
}
@Override
public int getCount() {
return VolleyList.size();
}
@Override
public Object getItem(int location) {
return VolleyList.get(location);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
final ViewHolder holder;
holder = new ViewHolder();
if (inflater == null)
inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
if (convertView == null)
convertView = inflater.inflate(R.layout.volley_listview_item, null);
holder.ImageView = (ImageView) convertView.findViewById(R.id.ImageView);
holder.TextView1 = (TextView) convertView.findViewById(R.id.TextView1);
holder.TextView2 = (TextView) convertView.findViewById(R.id.TextView2);
CommonBean commonBean = VolleyList.get(position);
holder.TextView1.setText(commonBean.getTextView1());
holder.TextView2.setText("Rs."+commonBean.getTextView2());
Glide.with(activity).load(commonBean.getImageView()).into(holder.ImageView);
return convertView;
}
}
CommonBean.java
package com.example.myapplication;
public class CommonBean {
String ImageView;
String TextView1;
String TextView2;
public String getImageView() {
return ImageView;
}
public void setImageView(String imageView) {
ImageView = imageView;
}
public String getTextView1() {
return TextView1;
}
public void setTextView1(String textView1) {
TextView1 = textView1;
}
public String getTextView2() {
return TextView2;
}
public void setTextView2(String textView2) {
TextView2 = textView2;
}
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<GridView
android:id="@+id/ListView"
android:layout_width="match_parent"
android:background="@android:color/darker_gray"
android:layout_height="match_parent"
android:layout_margin="5dp"
android:numColumns="2"
android:scrollbars="none" />
</android.support.constraint.ConstraintLayout>
volley_listview_item.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:background="@android:color/white"
android:layout_margin="5dp"
android:orientation="vertical">
<ImageView
android:id="@+id/ImageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="2dp"
android:layout_gravity="center"
android:gravity="center"
android:background="@mipmap/ic_launcher"/>
<TextView
android:id="@+id/TextView1"
android:text="Hello1"
android:textStyle="bold"
android:textSize="15sp"
android:layout_gravity="center"
android:gravity="center"
android:layout_margin="2dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/TextView2"
android:text="Hello1"
android:layout_margin="2dp"
android:layout_gravity="center"
android:gravity="center"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>
Requred.json
{
"data": {
"catalogId": "india",
"deliveryDateDtls": {"deliveryDateFieldName": "deliveryDate"},
"facetFieldFilterOptions": [],
"listSize": 4332,
"noResultsFound": false,
"plp2BannerPosition": "10",
"productCategoryId": null,
"productResults": [
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 1,
"price": {
"currencyUsed": "INR",
"listPrice": 1500,
"percentSaved": 20,
"price": 1200
},
"productAttributes": null,
"productId": "20164",
"productImage": {
"alt": "testproduct001",
"path": "https://m-sit.fnp.com/images/pr/m/testexpproduct20.jpg",
"url": "/images/pr/m/testexpproduct20.jpg"
},
"productName": "Test_ExpProduct_20",
"url": "/gift/testexpproduct20?pos=1",
"urlIdentifier": "india/testexpproduct20",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 2,
"price": {
"currencyUsed": "INR",
"listPrice": 999,
"percentSaved": 90,
"price": 100
},
"productAttributes": null,
"productId": "CAKE0013946",
"productImage": {
"alt": "pineapplecake",
"path": "https://m-sit.fnp.com/images/pr/m/pineapplecake.jpg",
"url": "/images/pr/m/pineapplecake.jpg"
},
"productName": "pineapplecake",
"url": "/gift/pineapplecake?pos=2",
"urlIdentifier": "india/pineapplecake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 3,
"price": {
"currencyUsed": "INR",
"listPrice": 2500,
"percentSaved": 40,
"price": 1500
},
"productAttributes": null,
"productId": "CAKE0013950",
"productImage": {
"alt": "heartcake",
"path": "https://m-sit.fnp.com/images/pr/m/heartcake.jpg",
"url": "/images/pr/m/heartcake.jpg"
},
"productName": "heartcake",
"url": "/gift/heartcake?pos=3",
"urlIdentifier": "india/heartcake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 4,
"price": {
"currencyUsed": "INR",
"price": 200
},
"productAttributes": null,
"productId": "CAKE0014080",
"productImage": {
"alt": "sample",
"path": "https://m-sit.fnp.com/images/pr/m/test.jpg",
"url": "/images/pr/m/test.jpg"
},
"productName": "test",
"url": "/gift/test?pos=4",
"urlIdentifier": "india/test",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 5,
"price": {
"currencyUsed": "INR",
"listPrice": 699,
"percentSaved": 14.3,
"price": 599
},
"productAttributes": null,
"productId": "CAKE0014170",
"productImage": {
"alt": "test1",
"path": "https://m-sit.fnp.com/images/pr/m/test1.jpg",
"url": "/images/pr/m/test1.jpg"
},
"productName": "test1",
"url": "/gift/test1?pos=5",
"urlIdentifier": "india/test1",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 6,
"price": {
"currencyUsed": "INR",
"price": 1000
},
"productAttributes": null,
"productId": "CAKE0014250",
"productImage": {
"alt": "Testcoupon",
"path": "https://m-sit.fnp.com/images/pr/m/testcoupon.jpg",
"url": "/images/pr/m/testcoupon.jpg"
},
"productName": "testcoupon",
"url": "/gift/testcoupon?pos=6",
"urlIdentifier": "india/testcoupon",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "16-Mar-2019",
"earliestDate": "16-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 7,
"price": {
"currencyUsed": "INR",
"listPrice": 1600,
"percentSaved": 6.3,
"price": 1500
},
"productAttributes": null,
"productId": "CAKE0014320",
"productImage": {
"alt": "promoprod",
"path": "https://m-sit.fnp.com/images/pr/m/promoproduct.jpg",
"url": "/images/pr/m/promoproduct.jpg"
},
"productName": "Promoproduct",
"url": "/gift/promoproduct?pos=7",
"urlIdentifier": "india/promoproduct",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "16-Mar-2019",
"earliestDate": "16-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 8,
"price": {
"currencyUsed": "INR",
"listPrice": 600,
"percentSaved": 16.7,
"price": 500
},
"productAttributes": null,
"productId": "CAKE0014454",
"productImage": {
"alt": "cakes_main",
"path": "https://m-sit.fnp.com/images/pr/m/cake0014454.jpg",
"url": "/images/pr/m/cake0014454.jpg"
},
"productName": "CAKE0014454",
"url": "/gift/cake0014454?pos=8",
"urlIdentifier": "india/cake0014454",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 9,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10002",
"productImage": {
"alt": "Pink Rose Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/pink-rose-cupcakes.jpg",
"url": "/images/pr/m/pink-rose-cupcakes.jpg"
},
"productName": "Pink Rose Cupcakes",
"url": "/gift/pink-rose-cupcakes?pos=9",
"urlIdentifier": "india/pink-rose-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 10,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10003",
"productImage": {
"alt": "Christmas Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-special-cupcakes.jpg",
"url": "/images/pr/m/christmas-special-cupcakes.jpg"
},
"productName": "Christmas Special Cupcakes",
"url": "/gift/christmas-special-cupcakes?pos=10",
"urlIdentifier": "india/christmas-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 11,
"price": {
"currencyUsed": "INR",
"price": 1099
},
"productAttributes": null,
"productId": "CAKE10006",
"productImage": {
"alt": "Christmas Snowman Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-snowman-cupcakes.jpg",
"url": "/images/pr/m/christmas-snowman-cupcakes.jpg"
},
"productName": "Christmas Snowman Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10006",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/christmas-snowman-cupcakes?pos=11",
"urlIdentifier": "india/christmas-snowman-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 12,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10008",
"productImage": {
"alt": "Sunshine Chocolate Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/sunshine-chocolate-cupcakes.jpg",
"url": "/images/pr/m/sunshine-chocolate-cupcakes.jpg"
},
"productName": "Sunshine Chocolate Cupcakes",
"url": "/gift/sunshine-chocolate-cupcakes?pos=12",
"urlIdentifier": "india/sunshine-chocolate-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 13,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10016",
"productImage": {
"alt": "Funny Christmas Cupcakess 6",
"path": "https://m-sit.fnp.com/images/pr/m/funny-christmas-cupcakess.jpg",
"url": "/images/pr/m/funny-christmas-cupcakess.jpg"
},
"productName": "Funny Christmas Cupcakess",
"url": "/gift/funny-christmas-cupcakess?pos=13",
"urlIdentifier": "india/funny-christmas-cupcakess",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 14,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10018",
"productImage": {
"alt": "Christmas Caramel Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-caramel-cupcakes.jpg",
"url": "/images/pr/m/christmas-caramel-cupcakes.jpg"
},
"productName": "Christmas Caramel Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10018",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 2
},
"totalReview": 2,
"url": "/gift/christmas-caramel-cupcakes?pos=14",
"urlIdentifier": "india/christmas-caramel-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 15,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10020",
"productImage": {
"alt": "Strawberry Merry Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/strawberry-merry-cupcakes.jpg",
"url": "/images/pr/m/strawberry-merry-cupcakes.jpg"
},
"productName": "Strawberry Merry Cupcakes",
"ratingNumericValue": 50,
"ratingTotal": 4.5,
"ratingValue": 2.5,
"review": {
"productId": "CAKE10020",
"ratingTotal": 4.5,
"ratingValue": 2.5,
"reviewCount": 2
},
"totalReview": 2,
"url": "/gift/strawberry-merry-cupcakes?pos=15",
"urlIdentifier": "india/strawberry-merry-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 16,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10028",
"productImage": {
"alt": "Frosted Peanut Butter Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/frosted-peanut-butter-cupcakes.jpg",
"url": "/images/pr/m/frosted-peanut-butter-cupcakes.jpg"
},
"productName": "Frosted Peanut Butter Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10028",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/frosted-peanut-butter-cupcakes?pos=16",
"urlIdentifier": "india/frosted-peanut-butter-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 17,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10034",
"productImage": {
"alt": "Football Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/football-special-cupcakes.jpg",
"url": "/images/pr/m/football-special-cupcakes.jpg"
},
"productName": "Football Special Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10034",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/football-special-cupcakes?pos=17",
"urlIdentifier": "india/football-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 18,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10035",
"productImage": {
"alt": "Chocolate Star Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-star-cupcakes.jpg",
"url": "/images/pr/m/chocolate-star-cupcakes.jpg"
},
"productName": "Chocolate Star Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10035",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/chocolate-star-cupcakes?pos=18",
"urlIdentifier": "india/chocolate-star-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 19,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10037",
"productImage": {
"alt": "Strawberry Cheese Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/strawberry-cheese-cupcakes.jpg",
"url": "/images/pr/m/strawberry-cheese-cupcakes.jpg"
},
"productName": "Strawberry Cheese Cupcakes",
"url": "/gift/strawberry-cheese-cupcakes?pos=19",
"urlIdentifier": "india/strawberry-cheese-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 20,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10040",
"productImage": {
"alt": "Ferrero Rocher Dream Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/ferrero-rocher-dream-cupcakes.jpg",
"url": "/images/pr/m/ferrero-rocher-dream-cupcakes.jpg"
},
"productName": "Ferrero Rocher Dream Cupcakes",
"url": "/gift/ferrero-rocher-dream-cupcakes?pos=20",
"urlIdentifier": "india/ferrero-rocher-dream-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 21,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10042",
"productImage": {
"alt": "Chocolate Squared Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-squared-cupcakes.jpg",
"url": "/images/pr/m/chocolate-squared-cupcakes.jpg"
},
"productName": "Chocolate Squared Cupcakes",
"url": "/gift/chocolate-squared-cupcakes?pos=21",
"urlIdentifier": "india/chocolate-squared-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 22,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10044",
"productImage": {
"alt": "Special DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/special-dad-cupcakes.jpg",
"url": "/images/pr/m/special-dad-cupcakes.jpg"
},
"productName": "Special DAD Cupcakes",
"url": "/gift/special-dad-cupcakes?pos=22",
"urlIdentifier": "india/special-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 23,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10052",
"productImage": {
"alt": "Ferrero Rocher Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/ferrero-rocher-cupcakes.jpg",
"url": "/images/pr/m/ferrero-rocher-cupcakes.jpg"
},
"productName": "Ferrero Rocher Cupcakes",
"url": "/gift/ferrero-rocher-cupcakes?pos=23",
"urlIdentifier": "india/ferrero-rocher-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 24,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10055",
"productImage": {
"alt": "Special DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/dad-special-cupcakes.jpg",
"url": "/images/pr/m/dad-special-cupcakes.jpg"
},
"productName": "DAD Special Cupcakes",
"url": "/gift/dad-special-cupcakes?pos=24",
"urlIdentifier": "india/dad-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 25,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10067",
"productImage": {
"alt": "Iced Christmas Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/iced-christmas-cupcakes.jpg",
"url": "/images/pr/m/iced-christmas-cupcakes.jpg"
},
"productName": "Iced Christmas Cupcakes",
"url": "/gift/iced-christmas-cupcakes?pos=25",
"urlIdentifier": "india/iced-christmas-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 26,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10075",
"productImage": {
"alt": "I Love You Mom Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/i-love-you-mom-cupcakes.jpg",
"url": "/images/pr/m/i-love-you-mom-cupcakes.jpg"
},
"productName": "I Love You Mom Cupcakes",
"url": "/gift/i-love-you-mom-cupcakes?pos=26",
"urlIdentifier": "india/i-love-you-mom-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 27,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10077",
"productImage": {
"alt": "Cookies and Cream Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/cookies-and-cream-cupcakes.jpg",
"url": "/images/pr/m/cookies-and-cream-cupcakes.jpg"
},
"productName": "Cookies and Cream Cupcakes",
"url": "/gift/cookies-and-cream-cupcakes?pos=27",
"urlIdentifier": "india/cookies-and-cream-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 28,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10079",
"productImage": {
"alt": "Tiramisu Trifle Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tiramisu-trifle-cupcakes.jpg",
"url": "/images/pr/m/tiramisu-trifle-cupcakes.jpg"
},
"productName": "Tiramisu Trifle Cupcakes",
"url": "/gift/tiramisu-trifle-cupcakes?pos=28",
"urlIdentifier": "india/tiramisu-trifle-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 29,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10086",
"productImage": {
"alt": "Classic Valentine Heart Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/classic-valentine-heart-cupcakes.jpg",
"url": "/images/pr/m/classic-valentine-heart-cupcakes.jpg"
},
"productName": "Classic Valentine Heart Cupcakes",
"url": "/gift/classic-valentine-heart-cupcakes?pos=29",
"urlIdentifier": "india/classic-valentine-heart-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 30,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10088",
"productImage": {
"alt": "The DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/the-dad-cupcakes.jpg",
"url": "/images/pr/m/the-dad-cupcakes.jpg"
},
"productName": "The DAD Cupcakes",
"url": "/gift/the-dad-cupcakes?pos=30",
"urlIdentifier": "india/the-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 31,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10100",
"productImage": {
"alt": "Happy Snowman Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/happy-snowman-cupcakes.jpg",
"url": "/images/pr/m/happy-snowman-cupcakes.jpg"
},
"productName": "Happy Snowman Cupcakes",
"url": "/gift/happy-snowman-cupcakes?pos=31",
"urlIdentifier": "india/happy-snowman-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 32,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10101",
"productImage": {
"alt": "Christmas Tree Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-tree-cupcakes.jpg",
"url": "/images/pr/m/christmas-tree-cupcakes.jpg"
},
"productName": "Christmas Tree Cupcakes",
"url": "/gift/christmas-tree-cupcakes?pos=32",
"urlIdentifier": "india/christmas-tree-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 33,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10103",
"productImage": {
"alt": "The Biker Dad Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/the-biker-dad-cupcakes.jpg",
"url": "/images/pr/m/the-biker-dad-cupcakes.jpg"
},
"productName": "The Biker Dad Cupcakes",
"url": "/gift/the-biker-dad-cupcakes?pos=33",
"urlIdentifier": "india/the-biker-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 34,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10111",
"productImage": {
"alt": "Happy Deepavali Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/happy-deepavali-cupcakes.jpg",
"url": "/images/pr/m/happy-deepavali-cupcakes.jpg"
},
"productName": "Happy Deepavali Cupcakes",
"url": "/gift/happy-deepavali-cupcakes?pos=34",
"urlIdentifier": "india/happy-deepavali-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 35,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10113",
"productImage": {
"alt": "Christmas Tree Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/special-christmas-tree-cupcakes.jpg",
"url": "/images/pr/m/special-christmas-tree-cupcakes.jpg"
},
"productName": "Special Christmas Tree Cupcakes",
"url": "/gift/special-christmas-tree-cupcakes?pos=35",
"urlIdentifier": "india/special-christmas-tree-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 36,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10115",
"productImage": {
"alt": "Teddy Love Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/teddy-love-cupcakes.jpg",
"url": "/images/pr/m/teddy-love-cupcakes.jpg"
},
"productName": "Teddy Love Cupcakes",
"url": "/gift/teddy-love-cupcakes?pos=36",
"urlIdentifier": "india/teddy-love-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 37,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10118",
"productImage": {
"alt": "Girlie Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/girlie-special-cupcakes.jpg",
"url": "/images/pr/m/girlie-special-cupcakes.jpg"
},
"productName": "Girlie Special Cupcakes",
"url": "/gift/girlie-special-cupcakes?pos=37",
"urlIdentifier": "india/girlie-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 38,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10121",
"productImage": {
"alt": "Sweetheart Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/sweetheart-cupcakes.jpg",
"url": "/images/pr/m/sweetheart-cupcakes.jpg"
},
"productName": "Sweetheart Cupcakes",
"url": "/gift/sweetheart-cupcakes?pos=38",
"urlIdentifier": "india/sweetheart-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 39,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10130",
"productImage": {
"alt": "Vanilla Bean Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/vanilla-bean-cupcakes.jpg",
"url": "/images/pr/m/vanilla-bean-cupcakes.jpg"
},
"productName": "Vanilla Bean Cupcakes",
"url": "/gift/vanilla-bean-cupcakes?pos=39",
"urlIdentifier": "india/vanilla-bean-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 40,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10137",
"productImage": {
"alt": "Dazzling Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/dazzling-cupcakes.jpg",
"url": "/images/pr/m/dazzling-cupcakes.jpg"
},
"productName": "Dazzling Cupcakes",
"url": "/gift/dazzling-cupcakes?pos=40",
"urlIdentifier": "india/dazzling-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 41,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10138",
"productImage": {
"alt": "MOM Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/mom-cupcakes.jpg",
"url": "/images/pr/m/mom-cupcakes.jpg"
},
"productName": "MOM Cupcakes",
"url": "/gift/mom-cupcakes?pos=41",
"urlIdentifier": "india/mom-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 42,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10142",
"productImage": {
"alt": "Valentine Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/valentine-special-cupcakes.jpg",
"url": "/images/pr/m/valentine-special-cupcakes.jpg"
},
"productName": "Valentine Special Cupcakes",
"url": "/gift/valentine-special-cupcakes?pos=42",
"urlIdentifier": "india/valentine-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 43,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10149",
"productImage": {
"alt": "Cute Red Velvet Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/cute-red-velvet-cupcakes.jpg",
"url": "/images/pr/m/cute-red-velvet-cupcakes.jpg"
},
"productName": "Cute Red Velvet Cupcakes",
"url": "/gift/cute-red-velvet-cupcakes?pos=43",
"urlIdentifier": "india/cute-red-velvet-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 44,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10150",
"productImage": {
"alt": "Maya The Bee Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/maya-the-bee-special-cupcakes.jpg",
"url": "/images/pr/m/maya-the-bee-special-cupcakes.jpg"
},
"productName": "Maya The Bee Special Cupcakes",
"url": "/gift/maya-the-bee-special-cupcakes?pos=44",
"urlIdentifier": "india/maya-the-bee-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 45,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10153",
"productImage": {
"alt": "Cream tshirt Cupcakes",
"path": "https://m-sit.fnp.com/images/pr/m/cream-tshirt-cupcakes.jpg",
"url": "/images/pr/m/cream-tshirt-cupcakes.jpg"
},
"productName": "Cream tshirt Cupcakes",
"url": "/gift/cream-tshirt-cupcakes?pos=45",
"urlIdentifier": "india/cream-tshirt-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 46,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10154",
"productImage": {
"alt": "Lovable Dad Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/lovable-dad-cupcakes.jpg",
"url": "/images/pr/m/lovable-dad-cupcakes.jpg"
},
"productName": "Lovable Dad Cupcakes",
"url": "/gift/lovable-dad-cupcakes?pos=46",
"urlIdentifier": "india/lovable-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 47,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10157",
"productImage": {
"alt": "Twinkling Stars Cupcakes for Dad 6",
"path": "https://m-sit.fnp.com/images/pr/m/twinkling-stars-cupcakes-for-dad.jpg",
"url": "/images/pr/m/twinkling-stars-cupcakes-for-dad.jpg"
},
"productName": "Twinkling Stars Cupcakes for Dad",
"url": "/gift/twinkling-stars-cupcakes-for-dad?pos=47",
"urlIdentifier": "india/twinkling-stars-cupcakes-for-dad",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 48,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10159",
"productImage": {
"alt": "Blue tshirt Cupcakes",
"path": "https://m-sit.fnp.com/images/pr/m/blue-tshirt-cupcakes.jpg",
"url": "/images/pr/m/blue-tshirt-cupcakes.jpg"
},
"productName": "Blue tshirt Cupcakes",
"url": "/gift/blue-tshirt-cupcakes?pos=48",
"urlIdentifier": "india/blue-tshirt-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 49,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10160",
"productImage": {
"alt": "Lemon Surprice Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/lemon-surprice-cupcakes.jpg",
"url": "/images/pr/m/lemon-surprice-cupcakes.jpg"
},
"productName": "Lemon Surprice Cupcakes",
"url": "/gift/lemon-surprice-cupcakes?pos=49",
"urlIdentifier": "india/lemon-surprice-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 50,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10164",
"productImage": {
"alt": "Tripple Chocolate Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tripple-chocolate-cupcakes.jpg",
"url": "/images/pr/m/tripple-chocolate-cupcakes.jpg"
},
"productName": "Tripple Chocolate Cupcakes",
"url": "/gift/tripple-chocolate-cupcakes?pos=50",
"urlIdentifier": "india/tripple-chocolate-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 51,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10171",
"productImage": {
"alt": "Cricket Mania Cupcake 6",
"path": "https://m-sit.fnp.com/images/pr/m/cricket-mania-cupcake.jpg",
"url": "/images/pr/m/cricket-mania-cupcake.jpg"
},
"productName": "Cricket Mania Cupcake",
"url": "/gift/cricket-mania-cupcake?pos=51",
"urlIdentifier": "india/cricket-mania-cupcake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 52,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10172",
"productImage": {
"alt": "Kit Kat Caramel Drizle Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/kit-kat-caramel-drizle-cupcakes.jpg",
"url": "/images/pr/m/kit-kat-caramel-drizle-cupcakes.jpg"
},
"productName": "Kit Kat Caramel Drizle Cupcakes",
"url": "/gift/kit-kat-caramel-drizle-cupcakes?pos=52",
"urlIdentifier": "india/kit-kat-caramel-drizle-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 53,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10175",
"productImage": {
"alt": "Tripple Chocolate Brownies Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tripple-chocolate-brownies-cupcakes.jpg",
"url": "/images/pr/m/tripple-chocolate-brownies-cupcakes.jpg"
},
"productName": "Tripple Chocolate Brownies Cupcakes",
"url": "/gift/tripple-chocolate-brownies-cupcakes?pos=53",
"urlIdentifier": "india/tripple-chocolate-brownies-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": "Alternate name for cake product",
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 54,
"price": {
"currencyUsed": "INR",
"price": 250
},
"productAttributes": null,
"productId": "CAKE10298",
"productImage": {
"alt": "Test_cakenormalprod1",
"path": "https://m-sit.fnp.com/images/pr/m/testcakenormalprod1.jpg",
"url": "/images/pr/m/testcakenormalprod1.jpg"
},
"productName": "Alternate name for cake product",
"url": "/gift/testcakenormalprod1?pos=54",
"urlIdentifier": "india/testcakenormalprod1",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 55,
"price": {
"currencyUsed": "INR",
"listPrice": 70,
"price": 700
},
"productAttributes": null,
"productId": "CAKE10299",
"productImage": {
"alt": "Test_cakeVirtualprod",
"path": "https://m-sit.fnp.com/images/pr/m/testcakevirtualprod.jpg",
"url": "/images/pr/m/testcakevirtualprod.jpg"
},
"productName": "Test_cakeVirtualprod",
"url": "/gift/testcakevirtualprod?pos=55",
"urlIdentifier": "india/testcakevirtualprod",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 56,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10495",
"productImage": {
"alt": "Chocolate Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Cake 5 Star Bakery",
"url": "/gift/chocolate-cake-5-star-bakery?pos=56",
"urlIdentifier": "india/chocolate-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 57,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10497",
"productImage": {
"alt": "Cherry Blackforest Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/cherry-blackforest-cake-5-star-bakery.jpg",
"url": "/images/pr/m/cherry-blackforest-cake-5-star-bakery.jpg"
},
"productName": "Cherry Blackforest Cake 5 Star Bakery",
"url": "/gift/cherry-blackforest-cake-5-star-bakery?pos=57",
"urlIdentifier": "india/cherry-blackforest-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 58,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10498",
"productImage": {
"alt": "Yummy Chocolate Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/yummy-chocolate-cake-5-star-bakery.jpg",
"url": "/images/pr/m/yummy-chocolate-cake-5-star-bakery.jpg"
},
"productName": "Yummy Chocolate Cake 5 Star Bakery",
"url": "/gift/yummy-chocolate-cake-5-star-bakery?pos=58",
"urlIdentifier": "india/yummy-chocolate-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 59,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10499",
"productImage": {
"alt": "Chocolate Delight Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-delight-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-delight-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Delight Cake 5 Star Bakery",
"url": "/gift/chocolate-delight-cake-5-star-bakery?pos=59",
"urlIdentifier": "india/chocolate-delight-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 60,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10501",
"productImage": {
"alt": "Chocolate Cream Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-cream-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-cream-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Cream Cake 5 Star Bakery",
"url": "/gift/chocolate-cream-cake-5-star-bakery?pos=60",
"urlIdentifier": "india/chocolate-cream-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
}
],
"queryTime": 42,
"responseMessage": "success",
"sortOptions": [
{
"level": "Recommended",
"value": "SEQUENCE_NUM_|ASC"
},
{
"level": "New",
"value": "CREATED_STAMP|DESC"
},
{
"level": "Price: Low to High",
"value": "PRICE_INR|ASC"
},
{
"level": "Price: High to Low",
"value": "PRICE_INR|DESC"
}
],
"startRows": 0,
"viewSize": 60
},
"isCached": "Y",
"responseStatus": "success",
"status": 200
}
Original .json
{
"data": {
"catalogId": "india",
"deliveryDateDtls": {"deliveryDateFieldName": "deliveryDate"},
"facetFieldFilterOptions": [],
"facetFieldTagOptions": [
{
"filterFacetField": "PRODUCT_TYPE_TAGS",
"filterName": "PRODUCT TYPE ",
"filterOptions": [
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Home Decor(502)",
"value": "home-decor"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Roses(448)",
"value": "roses"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Romantic Gifts(443)",
"value": "romantic-gifts"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Flower Bouquets(407)",
"value": "flower-bouquets"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Chocolates(311)",
"value": "chocolates"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Jewellery(304)",
"value": "jewellery"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Womens Accessories(257)",
"value": "womens-accessories"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Mugs(251)",
"value": "mugs"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Cushions(222)",
"value": "cushions"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Rakhi Gifts(201)",
"value": "rakhi-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Plants(172)",
"value": "plants"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Green Plants(165)",
"value": "green-plants"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Flower Arrangements(154)",
"value": "flower-arrangements"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Artificial Flowers(136)",
"value": "artificial-flowers"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Carnations(131)",
"value": "carnations"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Candles(120)",
"value": "candles"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Soft Toys(114)",
"value": "soft-toys"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Sweets(112)",
"value": "sweets"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Greeting Cards(107)",
"value": "greeting-cards"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Lilies(105)",
"value": "lilies"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Chocolates(104)",
"value": "flowers-n-chocolates"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Cakes(97)",
"value": "flowers-n-cakes"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Idols(90)",
"value": "idols"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Mixed Flowers(90)",
"value": "mixed-flowers"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Guitarist Service(89)",
"value": "flowers-n-guitarist-service"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Spiritual Gifts(89)",
"value": "spiritual-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Table Tops(88)",
"value": "table-tops"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Holi Colours(77)",
"value": "holi-colours"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Good Luck Plants(72)",
"value": "good-luck-plants"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Perfumes(72)",
"value": "perfumes"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Gold Plated Gifts(70)",
"value": "gold-plated-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Lucky Bamboo(65)",
"value": "lucky-bamboo"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Orchids(63)",
"value": "orchids"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Cosmetics & Spa Hampers(60)",
"value": "cosmetics-n-spa-hampers"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Basket Arrangements(59)",
"value": "basket-arrangements"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Photo Frames(57)",
"value": "photo-frames"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Roses And Teddies(46)",
"value": "roses-and-teddies"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Scarves N Stoles(46)",
"value": "scarves-n-stoles"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Teddy Bears(44)",
"value": "flowers-n-teddy-bears"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Dry Fruits(43)",
"value": "dry-fruits"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Premium Gifts(42)",
"value": "premium-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Cookies(38)",
"value": "cookies"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Gift Baskets(35)",
"value": "gift-baskets"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Gift Hampers(34)",
"value": "gift-hampers"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Ferrero Rocher Chocolates(27)",
"value": "ferrero-rocher-chocolates"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Pichkaris(25)",
"value": "pichkaris"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Sweets(21)",
"value": "flowers-n-sweets"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Rakhi(21)",
"value": "rakhi"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Bottle Lamps(19)",
"value": "bottle-lamps"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Buddha Collection(19)",
"value": "buddha-collection"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Sweets & Dry Fruits(17)",
"value": "sweets-n-dry-fruits"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Apparels(16)",
"value": "apparels"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Heart Shaped Gifts(16)",
"value": "heart-shaped-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Designer Bouquet(15)",
"value": "designer-bouquet"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised T Shirts(15)",
"value": "personalised-t-shirts"
},
{
"parentTypeId": "Cakes",
"selected": false,
"text": "Eggless Cakes(14)",
"value": "eggless-cakes"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "flowers(14)",
"value": "exp-personalized"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Unique Gifts(14)",
"value": "unique-gifts"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Photo Frames(12)",
"value": "personalised-photo-frames"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Pooja Thali(12)",
"value": "pooja-thali"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Anthuriums(11)",
"value": "anthuriums"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Birds Of Paradise(11)",
"value": "birds-of-paradise"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Bonsai Plants(11)",
"value": "bonsai-plants"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Personalised Mobile Covers(11)",
"value": "personalised-mobile-covers"
},
{
"parentTypeId": "Combos",
"selected": false,
"text": "Flowers & Greeting Cards(10)",
"value": "flowers-n-greeting-cards"
},
{
"parentTypeId": "Rakhi",
"selected": false,
"text": "Gold Rakhi(10)",
"value": "gold-rakhi"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Cushions(10)",
"value": "personalised-cushions"
},
{
"parentTypeId": "Cakes",
"selected": false,
"text": "Chocolate Cakes(9)",
"value": "chocolate-cakes"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Flowering Plants(9)",
"value": "flowering-plants"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Key Chains(9)",
"value": "key-chains"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Chocolate Bouquet(8)",
"value": "chocolate-bouquet"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Bottle Lamps(8)",
"value": "personalised-bottle-lamps"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Key Chains(8)",
"value": "personalised-key-chains"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Mugs(8)",
"value": "personalised-mugs"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Table Tops(8)",
"value": "personalised-table-tops"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Experiential Gifts(7)",
"value": "experiential-gifts"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Aprons(7)",
"value": "personalised-aprons"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Coasters(6)",
"value": "coasters"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Wall Clocks(6)",
"value": "personalised-wall-clocks"
},
{
"parentTypeId": "Cakes",
"selected": false,
"text": "Photo Cakes(6)",
"value": "photo-cakes"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Tote Bags(6)",
"value": "tote-bags"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Flower Bunches(5)",
"value": "flower-bunches"
},
{
"parentTypeId": "Flowers",
"selected": false,
"text": "Flowers Bouquet(5)",
"value": "flowers-bouquet"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Gourmet Gifts(5)",
"value": "gourmet-gifts"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Key Holders(5)",
"value": "key-holders"
},
{
"parentTypeId": "Personalized Gifts",
"selected": false,
"text": "T Shirts(5)",
"value": "t-shirts"
},
{
"parentTypeId": "Cakes",
"selected": false,
"text": "Designer Cakes(4)",
"value": "designer-cakes"
},
{
"parentTypeId": "Gifts",
"selected": false,
"text": "Gift Cards(4)",
"value": "gift-cards"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Caricatures(4)",
"value": "personalised-caricatures"
},
{
"parentTypeId": "Personalised Gifts",
"selected": false,
"text": "Personalised Pocket Mirros(4)",
"value": "personalised-pocket-mirros"
}
]
},
{
"filterFacetField": "OCCASION_TAGS",
"filterName": "OCCASION ",
"filterOptions": [
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Birthday(1419)",
"value": "birthday"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Mothers Day(1231)",
"value": "mothers-day"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Anniversary(1158)",
"value": "anniversary"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Love N Romance(1142)",
"value": "love-n-romance"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Congratulations(1028)",
"value": "congratulations"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Miss You(923)",
"value": "miss-you"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "50th Birthday(874)",
"value": "50th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "60th Birthday(874)",
"value": "60th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "75th Birthday(873)",
"value": "75th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Thank You(865)",
"value": "thank-you"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "10th Birthday(854)",
"value": "10th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "18th Birthday(830)",
"value": "18th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "21st Birthday(830)",
"value": "21st-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "16th Birthday(828)",
"value": "16th-birthday"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "House Warming(802)",
"value": "house-warming"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Thinking Of You(768)",
"value": "thinking-of-you"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "I Am Sorry(749)",
"value": "i-am-sorry"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Valentines Day(672)",
"value": "valentines-day"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Just Because(649)",
"value": "just-because"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Friendship Day(620)",
"value": "friendship-day"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Get Well Soon(589)",
"value": "get-well-soon"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "New Born(557)",
"value": "new-born"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Propose Day(464)",
"value": "propose-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Hug Day(437)",
"value": "hug-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Promise Day(436)",
"value": "promise-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Womens Day(427)",
"value": "womens-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Fathers Day(402)",
"value": "fathers-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "New Year(371)",
"value": "new-year"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Grandparents Day(358)",
"value": "grandparents-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Raksha Bandhan(348)",
"value": "raksha-bandhan"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "wedding(313)",
"value": "wedding"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Parents Day(303)",
"value": "parents-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Holi(298)",
"value": "holi"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "50th Anniversary(294)",
"value": "50th-anniversary"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Bhai Dooj(277)",
"value": "bhai-dooj"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Chocolate Day(248)",
"value": "chocolate-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Christmas(244)",
"value": "christmas"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "75th Anniversary(242)",
"value": "75th-anniversary"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Diwali(232)",
"value": "diwali"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Teddy Day(190)",
"value": "teddy-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Karwa Chauth(187)",
"value": "karwa-chauth"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Kiss Day(180)",
"value": "kiss-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Janmashtami(168)",
"value": "janmashtami"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Doctors Day(159)",
"value": "doctors-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Rose Day(146)",
"value": "rose-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Lohri(137)",
"value": "lohri"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "1st Anniversary(128)",
"value": "1st-anniversary"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Boss Day(128)",
"value": "boss-day"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "25th Anniversary(125)",
"value": "25th-anniversary"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Ganesh Chaturthi(125)",
"value": "ganesh-chaturthi"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Teachers Day(115)",
"value": "teachers-day"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "1st Birthday(97)",
"value": "1st-birthday"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Onam(95)",
"value": "onam"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Baisakhi(88)",
"value": "baisakhi"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Navratri(75)",
"value": "navratri"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "10th Anniversary(72)",
"value": "10th-anniversary"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Easter(72)",
"value": "easter"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Daughters Day(60)",
"value": "daughters-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Eid(56)",
"value": "eid"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Ugadi(53)",
"value": "ugadi"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Gudi Padwa(51)",
"value": "gudi-padwa"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Pongal(51)",
"value": "pongal"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Independence Day(17)",
"value": "independence-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Republic Day(17)",
"value": "republic-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Eid Ul Zuha(13)",
"value": "eid-ul-zuha"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Sympathy N Funeral(12)",
"value": "sympathy-n-funeral"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Childrens Day(7)",
"value": "childrens-day"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Dhanteras(7)",
"value": "dhanteras"
},
{
"parentTypeId": "Special Occasion",
"selected": false,
"text": "Dussehra(7)",
"value": "dussehra"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "New Baby(4)",
"value": "new-baby"
},
{
"parentTypeId": "Everyday Occasion",
"selected": false,
"text": "Retirement(4)",
"value": "retirement"
}
]
},
{
"filterFacetField": "CITY_TAGS",
"filterName": "CITY ",
"filterOptions": [
{
"parentTypeId": "CITY",
"selected": false,
"text": "Delhi(4181)",
"value": "delhi"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Green Park Delhi(4173)",
"value": "green-park-delhi"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Gurgaon(3459)",
"value": "gurgaon"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bangalore(3454)",
"value": "bangalore"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Pune(3437)",
"value": "pune"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kota(3436)",
"value": "kota"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Hyderabad(3420)",
"value": "hyderabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ranga-reddy(3420)",
"value": "ranga-reddy"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Mumbai(3397)",
"value": "mumbai"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Thane(3395)",
"value": "thane"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Chennai(3394)",
"value": "chennai"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ghaziabad(3394)",
"value": "ghaziabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Noida(3394)",
"value": "noida"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kanchipuram(3393)",
"value": "kanchipuram"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kolkata(3393)",
"value": "kolkata"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Tiruvallur(3393)",
"value": "tiruvallur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "24-parganas(3392)",
"value": "24-parganas"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Hoogly(3391)",
"value": "hoogly"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Agra(3379)",
"value": "agra"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Faridabad(3379)",
"value": "faridabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ahmedabad(3378)",
"value": "ahmedabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Indore(3378)",
"value": "indore"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Nagpur(3378)",
"value": "nagpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Nasik(3378)",
"value": "nasik"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Amritsar(3377)",
"value": "amritsar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Baroda(3377)",
"value": "baroda"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhopal(3377)",
"value": "bhopal"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Chandigarh(3377)",
"value": "chandigarh"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Dehradun(3377)",
"value": "dehradun"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Gandhinagar(3377)",
"value": "gandhinagar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ludhiana(3377)",
"value": "ludhiana"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Meerut(3377)",
"value": "meerut"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Panchkula(3377)",
"value": "panchkula"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Allahabad(3376)",
"value": "allahabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bareilly(3376)",
"value": "bareilly"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhilai(3376)",
"value": "bhilai"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bilaspur(3376)",
"value": "bilaspur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Coimbatore(3376)",
"value": "coimbatore"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Dakshina-kannada(3376)",
"value": "dakshina-kannada"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Durg(3376)",
"value": "durg"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Gwalior(3376)",
"value": "gwalior"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Jaipur(3376)",
"value": "jaipur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Jamshedpur(3376)",
"value": "jamshedpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kanpur(3376)",
"value": "kanpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Khordha(3376)",
"value": "khordha"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Lucknow(3376)",
"value": "lucknow"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Mangalore(3376)",
"value": "mangalore"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Nainital(3376)",
"value": "nainital"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Patiala(3376)",
"value": "patiala"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Patna(3376)",
"value": "patna"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Raipur(3376)",
"value": "raipur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "S-ajit-singh-nagar(3376)",
"value": "s-ajit-singh-nagar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Surat(3376)",
"value": "surat"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Varanasi(3376)",
"value": "varanasi"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ambala(3375)",
"value": "ambala"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Gorakhpur(3374)",
"value": "gorakhpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Guwahati(3374)",
"value": "guwahati"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Jabalpur(3374)",
"value": "jabalpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Udaipur(3374)",
"value": "udaipur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Akola(3364)",
"value": "akola"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kolhapur(3364)",
"value": "kolhapur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhagalpur(3361)",
"value": "bhagalpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Chittaurgarh(3361)",
"value": "chittaurgarh"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Tiruchirapalli(3361)",
"value": "tiruchirapalli"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Jodhpur(3198)",
"value": "jodhpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ranchi(3198)",
"value": "ranchi"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Goa(3141)",
"value": "goa"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Palwal(3140)",
"value": "palwal"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ghazipur(3139)",
"value": "ghazipur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Hapur(3139)",
"value": "hapur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Jhajjar(3139)",
"value": "jhajjar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Khammam(3139)",
"value": "khammam"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Kolar(3139)",
"value": "kolar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Rohtak(3139)",
"value": "rohtak"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Vizianagaram(3139)",
"value": "vizianagaram"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Yamuna-nagar(3139)",
"value": "yamuna-nagar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Adilabad(3138)",
"value": "adilabad"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ahmednagar(3138)",
"value": "ahmednagar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Amreli(3138)",
"value": "amreli"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Amroha(3138)",
"value": "amroha"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Anand(3138)",
"value": "anand"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Angul(3138)",
"value": "angul"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ashoknagar(3138)",
"value": "ashoknagar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bagalkot(3138)",
"value": "bagalkot"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Ballia(3138)",
"value": "ballia"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Banda(3138)",
"value": "banda"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Barabanki(3138)",
"value": "barabanki"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bardhaman(3138)",
"value": "bardhaman"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Barnala(3138)",
"value": "barnala"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Begusarai(3138)",
"value": "begusarai"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bellary(3138)",
"value": "bellary"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Betul(3138)",
"value": "betul"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bharatpur(3138)",
"value": "bharatpur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bharuch(3138)",
"value": "bharuch"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhilwara(3138)",
"value": "bhilwara"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhind(3138)",
"value": "bhind"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bhiwani(3138)",
"value": "bhiwani"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bidar(3138)",
"value": "bidar"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bijapur(3138)",
"value": "bijapur"
},
{
"parentTypeId": "CITY",
"selected": false,
"text": "Bokaro(3138)",
"value": "bokaro"
}
]
},
{
"filterFacetField": "RECIPIENT_TAGS",
"filterName": "RECIPIENT ",
"filterOptions": [
{
"parentTypeId": "Women",
"selected": false,
"text": "Wife(2012)",
"value": "for-wife"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Girlfriend(1992)",
"value": "for-girlfriend"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Mother(1908)",
"value": "for-mother"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "HER(1899)",
"value": "for-her"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Mother In Law(1879)",
"value": "for-mother-in-law"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Grandmother(1866)",
"value": "for-grandmother"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Bhabhi(1658)",
"value": "for-bhabhi"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Sister(1636)",
"value": "for-sister"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Aunt(1619)",
"value": "for-aunt"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Niece(1549)",
"value": "for-niece"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Granddaughter(1544)",
"value": "for-granddaughter"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Daughter(1519)",
"value": "for-daughter"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Boyfriend(1084)",
"value": "for-boyfriend"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Husband(1079)",
"value": "for-husband"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Him(1005)",
"value": "for-him"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Bhaiya(862)",
"value": "for-bhaiya"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Uncle(855)",
"value": "for-uncle"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Father(827)",
"value": "for-father"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Grandfather(823)",
"value": "for-grandfather"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Father In Law(821)",
"value": "for-father-in-law"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Brother(804)",
"value": "for-brother"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Nephew(778)",
"value": "for-nephew"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Son(775)",
"value": "for-son"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Grandson(772)",
"value": "for-grandson"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "New Mom(575)",
"value": "for-new-mom"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Colleague(423)",
"value": "for-colleague"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Parents(393)",
"value": "for-parents"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Boss(375)",
"value": "for-boss"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Teacher(369)",
"value": "for-teacher"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Grandparents(334)",
"value": "for-grandparents"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Bride(315)",
"value": "for-bride"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Groom(301)",
"value": "for-groom"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Kids(188)",
"value": "for-kids"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Doctor(141)",
"value": "for-doctor"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "For Friend(97)",
"value": "for-friend"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "For Bhaiya Bhabhi(34)",
"value": "for-bhaiya-bhabhi"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Corporate(22)",
"value": "for-corporate"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Friends(16)",
"value": "for-friends"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Sister(16)",
"value": "sister"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Bhaiya(15)",
"value": "bhaiya"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Boyfriend(15)",
"value": "boyfriend"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Clients(15)",
"value": "for-clients"
},
{
"parentTypeId": "Others",
"selected": false,
"text": "Employees(15)",
"value": "for-employees"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Brother(14)",
"value": "brother"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Girlfriend(14)",
"value": "girlfriend"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Daughter(13)",
"value": "daughter"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Friend-(f)(12)",
"value": "friend-(f)"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Friend-(m)(12)",
"value": "friend-(m)"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Son(12)",
"value": "son"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Father(10)",
"value": "father"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Granddaughter(10)",
"value": "granddaughter"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Grandfather(10)",
"value": "grandfather"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Mother(10)",
"value": "mother"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Aunt(9)",
"value": "aunt"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Father In Law(9)",
"value": "father-in-law"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Grandmother(9)",
"value": "grandmother"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Grandson(9)",
"value": "grandson"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Husband(9)",
"value": "husband"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Mother In Law(9)",
"value": "mother-in-law"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Nephew(9)",
"value": "nephew"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Niece(9)",
"value": "niece"
},
{
"parentTypeId": "Men",
"selected": false,
"text": "Uncle(9)",
"value": "uncle"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Wife(7)",
"value": "wife"
},
{
"parentTypeId": "Women",
"selected": false,
"text": "Bhabhi(6)",
"value": "bhabhi"
}
]
}
],
"facetRangeOptions": [{
"filterFacetField": "PRICE_INR",
"filterName": "PRICE_INR",
"filterOptions": [
{
"count": 762,
"priceEnd": 500,
"priceStart": 0,
"selected": false,
"value": "[0.0 TO 500.0]"
},
{
"count": 1391,
"priceEnd": 1000,
"priceStart": 500,
"selected": false,
"value": "[500.0 TO 1000.0]"
},
{
"count": 779,
"priceEnd": 1500,
"priceStart": 1000,
"selected": false,
"value": "[1000.0 TO 1500.0]"
},
{
"count": 396,
"priceEnd": 2000,
"priceStart": 1500,
"selected": false,
"value": "[1500.0 TO 2000.0]"
},
{
"count": 192,
"priceEnd": 2500,
"priceStart": 2000,
"selected": false,
"value": "[2000.0 TO 2500.0]"
},
{
"count": 811,
"priceEnd": "*",
"priceStart": 2500,
"selected": false,
"value": "[2500.0 TO *]"
}
]
}],
"listSize": 4332,
"noResultsFound": false,
"plp2BannerPosition": "10",
"productCategoryId": null,
"productResults": [
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 1,
"price": {
"currencyUsed": "INR",
"listPrice": 1500,
"percentSaved": 20,
"price": 1200
},
"productAttributes": null,
"productId": "20164",
"productImage": {
"alt": "testproduct001",
"path": "https://m-sit.fnp.com/images/pr/m/testexpproduct20.jpg",
"url": "/images/pr/m/testexpproduct20.jpg"
},
"productName": "Test_ExpProduct_20",
"url": "/gift/testexpproduct20?pos=1",
"urlIdentifier": "india/testexpproduct20",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 2,
"price": {
"currencyUsed": "INR",
"listPrice": 999,
"percentSaved": 90,
"price": 100
},
"productAttributes": null,
"productId": "CAKE0013946",
"productImage": {
"alt": "pineapplecake",
"path": "https://m-sit.fnp.com/images/pr/m/pineapplecake.jpg",
"url": "/images/pr/m/pineapplecake.jpg"
},
"productName": "pineapplecake",
"url": "/gift/pineapplecake?pos=2",
"urlIdentifier": "india/pineapplecake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 3,
"price": {
"currencyUsed": "INR",
"listPrice": 2500,
"percentSaved": 40,
"price": 1500
},
"productAttributes": null,
"productId": "CAKE0013950",
"productImage": {
"alt": "heartcake",
"path": "https://m-sit.fnp.com/images/pr/m/heartcake.jpg",
"url": "/images/pr/m/heartcake.jpg"
},
"productName": "heartcake",
"url": "/gift/heartcake?pos=3",
"urlIdentifier": "india/heartcake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 4,
"price": {
"currencyUsed": "INR",
"price": 200
},
"productAttributes": null,
"productId": "CAKE0014080",
"productImage": {
"alt": "sample",
"path": "https://m-sit.fnp.com/images/pr/m/test.jpg",
"url": "/images/pr/m/test.jpg"
},
"productName": "test",
"url": "/gift/test?pos=4",
"urlIdentifier": "india/test",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 5,
"price": {
"currencyUsed": "INR",
"listPrice": 699,
"percentSaved": 14.3,
"price": 599
},
"productAttributes": null,
"productId": "CAKE0014170",
"productImage": {
"alt": "test1",
"path": "https://m-sit.fnp.com/images/pr/m/test1.jpg",
"url": "/images/pr/m/test1.jpg"
},
"productName": "test1",
"url": "/gift/test1?pos=5",
"urlIdentifier": "india/test1",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Out Of Stock",
"earliestDate": "_NA_",
"imageCount": "0",
"isShow": false,
"pos": 6,
"price": {
"currencyUsed": "INR",
"price": 1000
},
"productAttributes": null,
"productId": "CAKE0014250",
"productImage": {
"alt": "Testcoupon",
"path": "https://m-sit.fnp.com/images/pr/m/testcoupon.jpg",
"url": "/images/pr/m/testcoupon.jpg"
},
"productName": "testcoupon",
"url": "/gift/testcoupon?pos=6",
"urlIdentifier": "india/testcoupon",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "16-Mar-2019",
"earliestDate": "16-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 7,
"price": {
"currencyUsed": "INR",
"listPrice": 1600,
"percentSaved": 6.3,
"price": 1500
},
"productAttributes": null,
"productId": "CAKE0014320",
"productImage": {
"alt": "promoprod",
"path": "https://m-sit.fnp.com/images/pr/m/promoproduct.jpg",
"url": "/images/pr/m/promoproduct.jpg"
},
"productName": "Promoproduct",
"url": "/gift/promoproduct?pos=7",
"urlIdentifier": "india/promoproduct",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "16-Mar-2019",
"earliestDate": "16-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 8,
"price": {
"currencyUsed": "INR",
"listPrice": 600,
"percentSaved": 16.7,
"price": 500
},
"productAttributes": null,
"productId": "CAKE0014454",
"productImage": {
"alt": "cakes_main",
"path": "https://m-sit.fnp.com/images/pr/m/cake0014454.jpg",
"url": "/images/pr/m/cake0014454.jpg"
},
"productName": "CAKE0014454",
"url": "/gift/cake0014454?pos=8",
"urlIdentifier": "india/cake0014454",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 9,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10002",
"productImage": {
"alt": "Pink Rose Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/pink-rose-cupcakes.jpg",
"url": "/images/pr/m/pink-rose-cupcakes.jpg"
},
"productName": "Pink Rose Cupcakes",
"url": "/gift/pink-rose-cupcakes?pos=9",
"urlIdentifier": "india/pink-rose-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 10,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10003",
"productImage": {
"alt": "Christmas Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-special-cupcakes.jpg",
"url": "/images/pr/m/christmas-special-cupcakes.jpg"
},
"productName": "Christmas Special Cupcakes",
"url": "/gift/christmas-special-cupcakes?pos=10",
"urlIdentifier": "india/christmas-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 11,
"price": {
"currencyUsed": "INR",
"price": 1099
},
"productAttributes": null,
"productId": "CAKE10006",
"productImage": {
"alt": "Christmas Snowman Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-snowman-cupcakes.jpg",
"url": "/images/pr/m/christmas-snowman-cupcakes.jpg"
},
"productName": "Christmas Snowman Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10006",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/christmas-snowman-cupcakes?pos=11",
"urlIdentifier": "india/christmas-snowman-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 12,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10008",
"productImage": {
"alt": "Sunshine Chocolate Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/sunshine-chocolate-cupcakes.jpg",
"url": "/images/pr/m/sunshine-chocolate-cupcakes.jpg"
},
"productName": "Sunshine Chocolate Cupcakes",
"url": "/gift/sunshine-chocolate-cupcakes?pos=12",
"urlIdentifier": "india/sunshine-chocolate-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 13,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10016",
"productImage": {
"alt": "Funny Christmas Cupcakess 6",
"path": "https://m-sit.fnp.com/images/pr/m/funny-christmas-cupcakess.jpg",
"url": "/images/pr/m/funny-christmas-cupcakess.jpg"
},
"productName": "Funny Christmas Cupcakess",
"url": "/gift/funny-christmas-cupcakess?pos=13",
"urlIdentifier": "india/funny-christmas-cupcakess",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 14,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10018",
"productImage": {
"alt": "Christmas Caramel Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-caramel-cupcakes.jpg",
"url": "/images/pr/m/christmas-caramel-cupcakes.jpg"
},
"productName": "Christmas Caramel Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10018",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 2
},
"totalReview": 2,
"url": "/gift/christmas-caramel-cupcakes?pos=14",
"urlIdentifier": "india/christmas-caramel-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 15,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10020",
"productImage": {
"alt": "Strawberry Merry Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/strawberry-merry-cupcakes.jpg",
"url": "/images/pr/m/strawberry-merry-cupcakes.jpg"
},
"productName": "Strawberry Merry Cupcakes",
"ratingNumericValue": 50,
"ratingTotal": 4.5,
"ratingValue": 2.5,
"review": {
"productId": "CAKE10020",
"ratingTotal": 4.5,
"ratingValue": 2.5,
"reviewCount": 2
},
"totalReview": 2,
"url": "/gift/strawberry-merry-cupcakes?pos=15",
"urlIdentifier": "india/strawberry-merry-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 16,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10028",
"productImage": {
"alt": "Frosted Peanut Butter Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/frosted-peanut-butter-cupcakes.jpg",
"url": "/images/pr/m/frosted-peanut-butter-cupcakes.jpg"
},
"productName": "Frosted Peanut Butter Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10028",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/frosted-peanut-butter-cupcakes?pos=16",
"urlIdentifier": "india/frosted-peanut-butter-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 17,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10034",
"productImage": {
"alt": "Football Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/football-special-cupcakes.jpg",
"url": "/images/pr/m/football-special-cupcakes.jpg"
},
"productName": "Football Special Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10034",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/football-special-cupcakes?pos=17",
"urlIdentifier": "india/football-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": true,
"pos": 18,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10035",
"productImage": {
"alt": "Chocolate Star Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-star-cupcakes.jpg",
"url": "/images/pr/m/chocolate-star-cupcakes.jpg"
},
"productName": "Chocolate Star Cupcakes",
"ratingNumericValue": 80,
"ratingTotal": 8,
"ratingValue": 4,
"review": {
"productId": "CAKE10035",
"ratingTotal": 8,
"ratingValue": 4,
"reviewCount": 1
},
"totalReview": 1,
"url": "/gift/chocolate-star-cupcakes?pos=18",
"urlIdentifier": "india/chocolate-star-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 19,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10037",
"productImage": {
"alt": "Strawberry Cheese Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/strawberry-cheese-cupcakes.jpg",
"url": "/images/pr/m/strawberry-cheese-cupcakes.jpg"
},
"productName": "Strawberry Cheese Cupcakes",
"url": "/gift/strawberry-cheese-cupcakes?pos=19",
"urlIdentifier": "india/strawberry-cheese-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 20,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10040",
"productImage": {
"alt": "Ferrero Rocher Dream Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/ferrero-rocher-dream-cupcakes.jpg",
"url": "/images/pr/m/ferrero-rocher-dream-cupcakes.jpg"
},
"productName": "Ferrero Rocher Dream Cupcakes",
"url": "/gift/ferrero-rocher-dream-cupcakes?pos=20",
"urlIdentifier": "india/ferrero-rocher-dream-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 21,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10042",
"productImage": {
"alt": "Chocolate Squared Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-squared-cupcakes.jpg",
"url": "/images/pr/m/chocolate-squared-cupcakes.jpg"
},
"productName": "Chocolate Squared Cupcakes",
"url": "/gift/chocolate-squared-cupcakes?pos=21",
"urlIdentifier": "india/chocolate-squared-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 22,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10044",
"productImage": {
"alt": "Special DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/special-dad-cupcakes.jpg",
"url": "/images/pr/m/special-dad-cupcakes.jpg"
},
"productName": "Special DAD Cupcakes",
"url": "/gift/special-dad-cupcakes?pos=22",
"urlIdentifier": "india/special-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 23,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10052",
"productImage": {
"alt": "Ferrero Rocher Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/ferrero-rocher-cupcakes.jpg",
"url": "/images/pr/m/ferrero-rocher-cupcakes.jpg"
},
"productName": "Ferrero Rocher Cupcakes",
"url": "/gift/ferrero-rocher-cupcakes?pos=23",
"urlIdentifier": "india/ferrero-rocher-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 24,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10055",
"productImage": {
"alt": "Special DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/dad-special-cupcakes.jpg",
"url": "/images/pr/m/dad-special-cupcakes.jpg"
},
"productName": "DAD Special Cupcakes",
"url": "/gift/dad-special-cupcakes?pos=24",
"urlIdentifier": "india/dad-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 25,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10067",
"productImage": {
"alt": "Iced Christmas Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/iced-christmas-cupcakes.jpg",
"url": "/images/pr/m/iced-christmas-cupcakes.jpg"
},
"productName": "Iced Christmas Cupcakes",
"url": "/gift/iced-christmas-cupcakes?pos=25",
"urlIdentifier": "india/iced-christmas-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 26,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10075",
"productImage": {
"alt": "I Love You Mom Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/i-love-you-mom-cupcakes.jpg",
"url": "/images/pr/m/i-love-you-mom-cupcakes.jpg"
},
"productName": "I Love You Mom Cupcakes",
"url": "/gift/i-love-you-mom-cupcakes?pos=26",
"urlIdentifier": "india/i-love-you-mom-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 27,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10077",
"productImage": {
"alt": "Cookies and Cream Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/cookies-and-cream-cupcakes.jpg",
"url": "/images/pr/m/cookies-and-cream-cupcakes.jpg"
},
"productName": "Cookies and Cream Cupcakes",
"url": "/gift/cookies-and-cream-cupcakes?pos=27",
"urlIdentifier": "india/cookies-and-cream-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 28,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10079",
"productImage": {
"alt": "Tiramisu Trifle Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tiramisu-trifle-cupcakes.jpg",
"url": "/images/pr/m/tiramisu-trifle-cupcakes.jpg"
},
"productName": "Tiramisu Trifle Cupcakes",
"url": "/gift/tiramisu-trifle-cupcakes?pos=28",
"urlIdentifier": "india/tiramisu-trifle-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 29,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10086",
"productImage": {
"alt": "Classic Valentine Heart Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/classic-valentine-heart-cupcakes.jpg",
"url": "/images/pr/m/classic-valentine-heart-cupcakes.jpg"
},
"productName": "Classic Valentine Heart Cupcakes",
"url": "/gift/classic-valentine-heart-cupcakes?pos=29",
"urlIdentifier": "india/classic-valentine-heart-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 30,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10088",
"productImage": {
"alt": "The DAD Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/the-dad-cupcakes.jpg",
"url": "/images/pr/m/the-dad-cupcakes.jpg"
},
"productName": "The DAD Cupcakes",
"url": "/gift/the-dad-cupcakes?pos=30",
"urlIdentifier": "india/the-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 31,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10100",
"productImage": {
"alt": "Happy Snowman Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/happy-snowman-cupcakes.jpg",
"url": "/images/pr/m/happy-snowman-cupcakes.jpg"
},
"productName": "Happy Snowman Cupcakes",
"url": "/gift/happy-snowman-cupcakes?pos=31",
"urlIdentifier": "india/happy-snowman-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 32,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10101",
"productImage": {
"alt": "Christmas Tree Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/christmas-tree-cupcakes.jpg",
"url": "/images/pr/m/christmas-tree-cupcakes.jpg"
},
"productName": "Christmas Tree Cupcakes",
"url": "/gift/christmas-tree-cupcakes?pos=32",
"urlIdentifier": "india/christmas-tree-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 33,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10103",
"productImage": {
"alt": "The Biker Dad Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/the-biker-dad-cupcakes.jpg",
"url": "/images/pr/m/the-biker-dad-cupcakes.jpg"
},
"productName": "The Biker Dad Cupcakes",
"url": "/gift/the-biker-dad-cupcakes?pos=33",
"urlIdentifier": "india/the-biker-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 34,
"price": {
"currencyUsed": "INR",
"price": 1299
},
"productAttributes": null,
"productId": "CAKE10111",
"productImage": {
"alt": "Happy Deepavali Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/happy-deepavali-cupcakes.jpg",
"url": "/images/pr/m/happy-deepavali-cupcakes.jpg"
},
"productName": "Happy Deepavali Cupcakes",
"url": "/gift/happy-deepavali-cupcakes?pos=34",
"urlIdentifier": "india/happy-deepavali-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 35,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10113",
"productImage": {
"alt": "Christmas Tree Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/special-christmas-tree-cupcakes.jpg",
"url": "/images/pr/m/special-christmas-tree-cupcakes.jpg"
},
"productName": "Special Christmas Tree Cupcakes",
"url": "/gift/special-christmas-tree-cupcakes?pos=35",
"urlIdentifier": "india/special-christmas-tree-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 36,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10115",
"productImage": {
"alt": "Teddy Love Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/teddy-love-cupcakes.jpg",
"url": "/images/pr/m/teddy-love-cupcakes.jpg"
},
"productName": "Teddy Love Cupcakes",
"url": "/gift/teddy-love-cupcakes?pos=36",
"urlIdentifier": "india/teddy-love-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 37,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10118",
"productImage": {
"alt": "Girlie Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/girlie-special-cupcakes.jpg",
"url": "/images/pr/m/girlie-special-cupcakes.jpg"
},
"productName": "Girlie Special Cupcakes",
"url": "/gift/girlie-special-cupcakes?pos=37",
"urlIdentifier": "india/girlie-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 38,
"price": {
"currencyUsed": "INR",
"price": 1199
},
"productAttributes": null,
"productId": "CAKE10121",
"productImage": {
"alt": "Sweetheart Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/sweetheart-cupcakes.jpg",
"url": "/images/pr/m/sweetheart-cupcakes.jpg"
},
"productName": "Sweetheart Cupcakes",
"url": "/gift/sweetheart-cupcakes?pos=38",
"urlIdentifier": "india/sweetheart-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 39,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10130",
"productImage": {
"alt": "Vanilla Bean Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/vanilla-bean-cupcakes.jpg",
"url": "/images/pr/m/vanilla-bean-cupcakes.jpg"
},
"productName": "Vanilla Bean Cupcakes",
"url": "/gift/vanilla-bean-cupcakes?pos=39",
"urlIdentifier": "india/vanilla-bean-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 40,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10137",
"productImage": {
"alt": "Dazzling Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/dazzling-cupcakes.jpg",
"url": "/images/pr/m/dazzling-cupcakes.jpg"
},
"productName": "Dazzling Cupcakes",
"url": "/gift/dazzling-cupcakes?pos=40",
"urlIdentifier": "india/dazzling-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 41,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10138",
"productImage": {
"alt": "MOM Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/mom-cupcakes.jpg",
"url": "/images/pr/m/mom-cupcakes.jpg"
},
"productName": "MOM Cupcakes",
"url": "/gift/mom-cupcakes?pos=41",
"urlIdentifier": "india/mom-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 42,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10142",
"productImage": {
"alt": "Valentine Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/valentine-special-cupcakes.jpg",
"url": "/images/pr/m/valentine-special-cupcakes.jpg"
},
"productName": "Valentine Special Cupcakes",
"url": "/gift/valentine-special-cupcakes?pos=42",
"urlIdentifier": "india/valentine-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 43,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10149",
"productImage": {
"alt": "Cute Red Velvet Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/cute-red-velvet-cupcakes.jpg",
"url": "/images/pr/m/cute-red-velvet-cupcakes.jpg"
},
"productName": "Cute Red Velvet Cupcakes",
"url": "/gift/cute-red-velvet-cupcakes?pos=43",
"urlIdentifier": "india/cute-red-velvet-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 44,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10150",
"productImage": {
"alt": "Maya The Bee Special Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/maya-the-bee-special-cupcakes.jpg",
"url": "/images/pr/m/maya-the-bee-special-cupcakes.jpg"
},
"productName": "Maya The Bee Special Cupcakes",
"url": "/gift/maya-the-bee-special-cupcakes?pos=44",
"urlIdentifier": "india/maya-the-bee-special-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 45,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10153",
"productImage": {
"alt": "Cream tshirt Cupcakes",
"path": "https://m-sit.fnp.com/images/pr/m/cream-tshirt-cupcakes.jpg",
"url": "/images/pr/m/cream-tshirt-cupcakes.jpg"
},
"productName": "Cream tshirt Cupcakes",
"url": "/gift/cream-tshirt-cupcakes?pos=45",
"urlIdentifier": "india/cream-tshirt-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 46,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10154",
"productImage": {
"alt": "Lovable Dad Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/lovable-dad-cupcakes.jpg",
"url": "/images/pr/m/lovable-dad-cupcakes.jpg"
},
"productName": "Lovable Dad Cupcakes",
"url": "/gift/lovable-dad-cupcakes?pos=46",
"urlIdentifier": "india/lovable-dad-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 47,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10157",
"productImage": {
"alt": "Twinkling Stars Cupcakes for Dad 6",
"path": "https://m-sit.fnp.com/images/pr/m/twinkling-stars-cupcakes-for-dad.jpg",
"url": "/images/pr/m/twinkling-stars-cupcakes-for-dad.jpg"
},
"productName": "Twinkling Stars Cupcakes for Dad",
"url": "/gift/twinkling-stars-cupcakes-for-dad?pos=47",
"urlIdentifier": "india/twinkling-stars-cupcakes-for-dad",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 48,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10159",
"productImage": {
"alt": "Blue tshirt Cupcakes",
"path": "https://m-sit.fnp.com/images/pr/m/blue-tshirt-cupcakes.jpg",
"url": "/images/pr/m/blue-tshirt-cupcakes.jpg"
},
"productName": "Blue tshirt Cupcakes",
"url": "/gift/blue-tshirt-cupcakes?pos=48",
"urlIdentifier": "india/blue-tshirt-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 49,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10160",
"productImage": {
"alt": "Lemon Surprice Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/lemon-surprice-cupcakes.jpg",
"url": "/images/pr/m/lemon-surprice-cupcakes.jpg"
},
"productName": "Lemon Surprice Cupcakes",
"url": "/gift/lemon-surprice-cupcakes?pos=49",
"urlIdentifier": "india/lemon-surprice-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 50,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10164",
"productImage": {
"alt": "Tripple Chocolate Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tripple-chocolate-cupcakes.jpg",
"url": "/images/pr/m/tripple-chocolate-cupcakes.jpg"
},
"productName": "Tripple Chocolate Cupcakes",
"url": "/gift/tripple-chocolate-cupcakes?pos=50",
"urlIdentifier": "india/tripple-chocolate-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 51,
"price": {
"currencyUsed": "INR",
"price": 999
},
"productAttributes": null,
"productId": "CAKE10171",
"productImage": {
"alt": "Cricket Mania Cupcake 6",
"path": "https://m-sit.fnp.com/images/pr/m/cricket-mania-cupcake.jpg",
"url": "/images/pr/m/cricket-mania-cupcake.jpg"
},
"productName": "Cricket Mania Cupcake",
"url": "/gift/cricket-mania-cupcake?pos=51",
"urlIdentifier": "india/cricket-mania-cupcake",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 52,
"price": {
"currencyUsed": "INR",
"price": 799
},
"productAttributes": null,
"productId": "CAKE10172",
"productImage": {
"alt": "Kit Kat Caramel Drizle Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/kit-kat-caramel-drizle-cupcakes.jpg",
"url": "/images/pr/m/kit-kat-caramel-drizle-cupcakes.jpg"
},
"productName": "Kit Kat Caramel Drizle Cupcakes",
"url": "/gift/kit-kat-caramel-drizle-cupcakes?pos=52",
"urlIdentifier": "india/kit-kat-caramel-drizle-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 53,
"price": {
"currencyUsed": "INR",
"price": 899
},
"productAttributes": null,
"productId": "CAKE10175",
"productImage": {
"alt": "Tripple Chocolate Brownies Cupcakes 6",
"path": "https://m-sit.fnp.com/images/pr/m/tripple-chocolate-brownies-cupcakes.jpg",
"url": "/images/pr/m/tripple-chocolate-brownies-cupcakes.jpg"
},
"productName": "Tripple Chocolate Brownies Cupcakes",
"url": "/gift/tripple-chocolate-brownies-cupcakes?pos=53",
"urlIdentifier": "india/tripple-chocolate-brownies-cupcakes",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": "Alternate name for cake product",
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 54,
"price": {
"currencyUsed": "INR",
"price": 250
},
"productAttributes": null,
"productId": "CAKE10298",
"productImage": {
"alt": "Test_cakenormalprod1",
"path": "https://m-sit.fnp.com/images/pr/m/testcakenormalprod1.jpg",
"url": "/images/pr/m/testcakenormalprod1.jpg"
},
"productName": "Alternate name for cake product",
"url": "/gift/testcakenormalprod1?pos=54",
"urlIdentifier": "india/testcakenormalprod1",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "0",
"isShow": false,
"pos": 55,
"price": {
"currencyUsed": "INR",
"listPrice": 70,
"price": 700
},
"productAttributes": null,
"productId": "CAKE10299",
"productImage": {
"alt": "Test_cakeVirtualprod",
"path": "https://m-sit.fnp.com/images/pr/m/testcakevirtualprod.jpg",
"url": "/images/pr/m/testcakevirtualprod.jpg"
},
"productName": "Test_cakeVirtualprod",
"url": "/gift/testcakevirtualprod?pos=55",
"urlIdentifier": "india/testcakevirtualprod",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 56,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10495",
"productImage": {
"alt": "Chocolate Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Cake 5 Star Bakery",
"url": "/gift/chocolate-cake-5-star-bakery?pos=56",
"urlIdentifier": "india/chocolate-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 57,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10497",
"productImage": {
"alt": "Cherry Blackforest Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/cherry-blackforest-cake-5-star-bakery.jpg",
"url": "/images/pr/m/cherry-blackforest-cake-5-star-bakery.jpg"
},
"productName": "Cherry Blackforest Cake 5 Star Bakery",
"url": "/gift/cherry-blackforest-cake-5-star-bakery?pos=57",
"urlIdentifier": "india/cherry-blackforest-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 58,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10498",
"productImage": {
"alt": "Yummy Chocolate Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/yummy-chocolate-cake-5-star-bakery.jpg",
"url": "/images/pr/m/yummy-chocolate-cake-5-star-bakery.jpg"
},
"productName": "Yummy Chocolate Cake 5 Star Bakery",
"url": "/gift/yummy-chocolate-cake-5-star-bakery?pos=58",
"urlIdentifier": "india/yummy-chocolate-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 59,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10499",
"productImage": {
"alt": "Chocolate Delight Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-delight-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-delight-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Delight Cake 5 Star Bakery",
"url": "/gift/chocolate-delight-cake-5-star-bakery?pos=59",
"urlIdentifier": "india/chocolate-delight-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
},
{
"brandName": null,
"deliveryTypeList": null,
"eariestDay": "Today",
"earliestDate": "13-03-2019",
"imageCount": "1",
"isShow": false,
"pos": 60,
"price": {
"currencyUsed": "INR",
"price": 3799
},
"productAttributes": null,
"productId": "CAKE10501",
"productImage": {
"alt": "Chocolate Cream Cake - Five Star Bakery 1kg",
"path": "https://m-sit.fnp.com/images/pr/m/chocolate-cream-cake-5-star-bakery.jpg",
"url": "/images/pr/m/chocolate-cream-cake-5-star-bakery.jpg"
},
"productName": "Chocolate Cream Cake 5 Star Bakery",
"url": "/gift/chocolate-cream-cake-5-star-bakery?pos=60",
"urlIdentifier": "india/chocolate-cream-cake-5-star-bakery",
"viewSalesCountInfo": [
0,
0
]
}
],
"queryTime": 42,
"responseMessage": "success",
"sortOptions": [
{
"level": "Recommended",
"value": "SEQUENCE_NUM_|ASC"
},
{
"level": "New",
"value": "CREATED_STAMP|DESC"
},
{
"level": "Price: Low to High",
"value": "PRICE_INR|ASC"
},
{
"level": "Price: High to Low",
"value": "PRICE_INR|DESC"
}
],
"startRows": 0,
"viewSize": 60
},
"isCached": "Y",
"responseStatus": "success",
"status": 200
}