3. DigitMarket™ API Documentation

3.1. Overview

DigitMarket™ APIs allow you to showcase your products on the Digit Market storefront and build customer-facing shopping experiences that cater to their requirements, and ensure a smooth and consistent user journey on the storefront.

3.1.1. Authentication

Depending on user’s requirements, choose either basic authorization or the Bearer authorization method to access the DigitMarket™ APIs.

Basic Authorization

The user can access the exposed REST APIs by entering the username and password.

Bearer (apiKey) Authorization

When using the Bearer authorization, consuming applications must generate auth/bearer token using the registration API and then attach the bearer token in the Authorization header to consume the exposed APIs.

Note

Providing an authentication token with the request is necessary for all the registered users who want to access the DigitMarket™ APIs.

Here is a sample request call to ‘Login as a customer’ API with bearer token passed in Authorization header:

Sample Request

<base URL>/customer2/login
  • Bearer (apiKey)
  • Name: Authorization
  • In: header
  • Value: 16b746f8311e7f4d969fbd37e20e16570712

Sample Response

{
   "message":"You've Successfully Logged in",
   "auth_token":"16b746f8311e7f4d969fbd37e20e16570712",
   "expires_in_seconds":3600,
   "customer":{
      "store_id":16,
      "phone_number":"9000000000",
      "password":"string"
   }
}

Note

Password is mandatory if any customer is registered using their phone number and password
Password is not required if any customer registered with OTP

3.1.2. Accessing DigitMarket™ APIs

  1. To view the list of APIs, access the Swagger UI by hitting the URL <base URL>/swagger.
  2. Register as a customer using the customer registration API. Refer the Register Customer section to view the steps. Upon successful registration, an authorization key will be generated.
  3. Click Authorize.

Fig. 3.1 API’s

The Authorization window displays to show the available authorizations.

Fig. 3.2 Authorize User

  1. In the Value box, enter the authorization key that was generated during registration.
  2. Click Close. You will now be able to access all the APIs that require authorization.
  3. Once you are registered as a customer, in order to access some of the DigitMarket™ APIs, you will need to login using the Customer Login API to generate the Authorization key. Refer the Customer Login section to view the steps. Upon successful login, an authorization key will be generated.

Note

All the APIs listed in the following sections are accessible in the form of a Postman Collection that can be accessed by the URL- https://www.getpostman.com/collections/70a049f7d8d7d3414816

Go to Postman → Import → Import from Link.

Enter the above URL and press Import to import the collection.

3.1.3. Using the API

Base URL

All URLs referenced in the documentation have the following base URL:

http(s)://<ip address>:<port number>/

Responses

Expected response is a JSON structure containing a list of parameter values.

3.1.4. Customer APIs

These set of APIs help to onboard a customer into the DigitMarket™ store front.

3.1.4.1. Register Customer

This API is used for registering a new customer to a store. It collects basic information necessary to onboard a new customer to the store.

POST   register

Resource URI

<base URL>/customer2/register

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store. Use Store Save api to get the store id
phone_number string yes phone number of the customer max length is 15 min. length is 1
contact_email string yes email address of the customer max length is 320 min length is 1
require_password boolean no specifies whether password is required. Default value is false.
password string no password of the account max length: 20 min length: 1
salutation array of string no salutation of customer. Default value is Mx. Available values are Mx., Ms., Mr., Mrs., Dr., Miss., Master.
first_name string no first name of the customer min length: 1
last_name string no last name of the customer min length: 1
company_name string no name of the customer’s company min length: 1
contact_display_name string yes contact display name of the customer for this registration min length: 1

Note

Customer should be registered using the registration API and then login to get the auth_token. Once the authorization is done, all the other APIs will accept the auth_token, and automatically retrieve basic customer information.

Error Codes:

400, 401, 404, 409, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
409 email id already exists email id already registered
409 phone number already exists phone number already registered
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/register

Example Body

{
 "store_id":1,
 "phone_number":"8000000000",
 "contact_email":"xxx@yy.com",
 "require_password":true,
 "password":"thbsuser123",
 "salutation":"Mx.",
 "first_name":"xxxx",
 "last_name":"yyyy",
 "company_name":"aaaa",
 "contact_display_name":"bbbbbbbb"
}

Example Response

{
  "message": ""You are Successfully Registered.Please verify your account before login to your account""
}

3.1.4.2. Customer Login

This API is used to sign in customers to the storefront.

POST   login

Resource URI

<base URL>/customer2/login

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store. Use Store Save api to get the store id
login_id string yes get the login_id as phone number or email by registering using Customer Register api with max. length of 320 min. length is 1
password string yes/no password of the account. It will be mandatory if the user has chosen username and password as login criteria and if the required_password field in true. This field can have max length: 20 and min length: 6

Note

Customer Login API returns an auth_token which will be used in the subsequent APIs that follow.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/login

Example Body

{
 "store_id":1,
 "login_id":"xxxx@yy.com",
 "password":"thbsuser123"
}

Example Response

{
 "message":"You've Successfully Logged in",
 "auth_token":"1c543f33f00714369bfb1c0f7f6a28e091915",
 "expires_in_seconds":3600,
 "customer":{
    "customer_id":1915,
    "store_id":1,
    "login_id":"xxxx@yy.com"
 }
}

Note

Password is mandatory if any customer is registered using their phone number and password
Password is not required if any customer registered with OTP

3.1.4.3. Customer Login

GET   login

Resource URI

<base URL>/customer2/login

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id string yes id of the store to which the customer is to be added
phone_number string yes phone number of the customer

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid authentication token incorrect Auth Token entered

Example Request

<base URL>/customer2/login

Example Response

{
   "message":{
      "store_id":[
         "This field is required."
      ],
      "phone_number":[
         "This field is required."
      ]
   }
}

3.1.4.4. Customer Details

This API returns the profile related information of a customer.

GET   customer_details

Resource URI

<base URL>/customer2/customer_details

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid authentication token incorrect Auth token entered

Example Request

<base URL>/customer2/customer_details

Example Response

{
   "id":4,
   "salutation":"Ms.",
   "first_name":"Maria",
   "last_name":"Sen",
   "company_name":null,
   "contact_display_name":"Maria",
   "contact_email":"maria_sen@test.in",
   "avatar":"customer.avatar",
   "created_source":"Created",
   "date_of_joining":"2019-10-30T06:53:05.192674Z",
   "store_id":6,
   "contact_type":"Mobile",
   "phone_number":"9000000000"
}

3.1.4.5. Change Password

This API is used for Reseting Customer’s Password.

POST   change_password

Resource URI

<base URL> /customer2/change_password

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store. Use using the api: Store Save api to get the store id
login_id string yes get the login_id as phone number or email by regisistering using Customer Register api with max.length is 320 and min. length is 1
old_password string yes to get the old password with max. length 20 and min. length is 6
new_password string yes to get the old password with max length 20 and min. length is 6

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> customer2/change_password

Example Body

{
 "store_id":1,
 "login_id":"8073699762",
 "old_password":"XXXXXXXX",
 "new_password":"YYYYYYYY"
}
  **Example Response**
{
"message": "Password has been Changed"
}

Send Password Link

This API is used for sending Reset password link for the Customer.

POST   send_forgot_password_link

Resource URI

<base URL> /customer2/send_forgot_password_link

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store using the api: /store2/api/store_save e_save
login_id string no get the login_id as phone number or email by regisistering using Customer Register api with max. length is 320 and min. length is 1. With max. length of 320 and min. length

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> /customer2/send_forgot_password_link

Example Body

{
   "store_id":2,
   "login_id":"8970784919"
}
  **Example Response**
{
   "message":"Email Sent Successfully"
}

Reset Password

This API is used for sending Reset password link for the Customer.

POST   reset_password

Resource URI

<base URL>/customer2/reset_password

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store using the api: /store2/api/store_save e_save
login_id string no get the login_id as phone number or email by regisistering using Customer Register api with max. length is 320 and min. length is 1. With max. length of 320 and min. length
old_password string yes to get the old password. With the max. length of 20 and min. length of 6
new_password string no to get the old password. With the max. length of 20 and min. length of 6

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/reset_password

Example Body

{
 "store_id":2,
 "login_id":"8970784919",
 "new_password":"thbs123",
 "confirm_password":"thbs123",
 "token":"1fc74d1f-38a3-4ee8-8235-2c966d68c8d0"
}

  **Example Response**
{
   "message": "Password has been changed"
}

3.1.4.6. Get Rating Scale

This API is to get list of rating scale.

POST   getRatingScale

Resource URI

<base URL> /comms/api/getRatingScale

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
scale_type string yes displays the scale type
feedback boolean no enable or display to display the queries
store_id integer yes id of the store. Store_id is dependend on create store using the api: Use Store Save api to get the store id

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> /comms/api/getRatingScale

Example Body

{
 "feedback":1,
 "store_id":"1",
 "scale_type":"order"
}

Example Response

 {
"message":"Rating Scale Retrieved Sucessfully",
  "total":6,
  "ratingscale":[
     {
        "id":6,
        "name":"Very Poor",
        "rating":1,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-12T10:51:06.826774Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":9,
              "question":"please select option what was wrong",
              "store_id":1,
              "created_on":"2021-08-12T11:03:03.400145Z",
              "question_type":"2",
              "feedback_options":[
                 {
                    "id":13,
                    "question_id":9,
                    "option_name":"Delivery Time",
                    "created_on":"2021-08-12T11:08:57.970680Z"
                 },
                 {
                    "id":14,
                    "question_id":9,
                    "option_name":"Product Package",
                    "created_on":"2021-08-12T11:08:57.973757Z"
                 },
                 {
                    "id":15,
                    "question_id":9,
                    "option_name":"Product Price",
                    "created_on":"2021-08-12T11:08:57.977344Z"
                 }
              ]
           },
           {
              "id":10,
              "question":"please help us to improve ",
              "store_id":1,
              "created_on":"2021-08-12T11:03:03.402824Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     },
     {
        "id":5,
        "name":"Bad",
        "rating":2,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-12T10:50:42.247738Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":7,
              "question":"please select below points was not good?",
              "store_id":1,
              "created_on":"2021-08-12T11:02:02.379653Z",
              "question_type":"2",
              "feedback_options":[
                 {
                    "id":10,
                    "question_id":7,
                    "option_name":"Delivery Speed",
                    "created_on":"2021-08-12T11:06:54.407299Z"
                 },
                 {
                    "id":11,
                    "question_id":7,
                    "option_name":"Price",
                    "created_on":"2021-08-12T11:06:54.410800Z"
                 },
                 {
                    "id":12,
                    "question_id":7,
                    "option_name":"Package",
                    "created_on":"2021-08-12T11:06:54.413963Z"
                 }
              ]
           },
           {
              "id":8,
              "question":"please provide comments",
              "store_id":1,
              "created_on":"2021-08-12T11:02:02.383382Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     },
     {
        "id":4,
        "name":"Average",
        "rating":3,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-12T10:50:30.888888Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":5,
              "question":"What went wrong?",
              "store_id":1,
              "created_on":"2021-08-12T11:01:18.146258Z",
              "question_type":"1",
              "feedback_options":[
                 {
                    "id":7,
                    "question_id":5,
                    "option_name":"Price too heigh",
                    "created_on":"2021-08-12T11:06:16.787629Z"
                 },
                 {
                    "id":8,
                    "question_id":5,
                    "option_name":"Delivery Time ",
                    "created_on":"2021-08-12T11:06:16.790596Z"
                 },
                 {
                    "id":9,
                    "question_id":5,
                    "option_name":"Product Quality",
                    "created_on":"2021-08-12T11:06:16.794134Z"
                 }
              ]
           },
           {
              "id":6,
              "question":"please provide comments",
              "store_id":1,
              "created_on":"2021-08-12T11:01:18.149472Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     },
     {
        "id":2,
        "name":"Good",
        "rating":4,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-12T10:49:55.763408Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":3,
              "question":"please select below points which you liked most",
              "store_id":1,
              "created_on":"2021-08-12T11:00:26.408978Z",
              "question_type":"2",
              "feedback_options":[
                 {
                    "id":4,
                    "question_id":3,
                    "option_name":"Package",
                    "created_on":"2021-08-12T11:05:17.089354Z"
                 },
                 {
                    "id":5,
                    "question_id":3,
                    "option_name":"Price",
                    "created_on":"2021-08-12T11:05:17.093440Z"
                 },
                 {
                    "id":6,
                    "question_id":3,
                    "option_name":"Delivery Speed",
                    "created_on":"2021-08-12T11:05:17.096250Z"
                 }
              ]
           },
           {
              "id":4,
              "question":"any comments",
              "store_id":1,
              "created_on":"2021-08-12T11:00:26.412159Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     },
     {
        "id":1,
        "name":"Very Good",
        "rating":5,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-12T10:49:42.334604Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":1,
              "question":"What you liked Most?",
              "store_id":1,
              "created_on":"2021-08-12T10:52:18.436770Z",
              "question_type":"1",
              "feedback_options":[
                 {
                    "id":1,
                    "question_id":1,
                    "option_name":"Delivery Speed",
                    "created_on":"2021-08-12T11:04:36.647687Z"
                 },
                 {
                    "id":2,
                    "question_id":1,
                    "option_name":"Price",
                    "created_on":"2021-08-12T11:04:36.651140Z"
                 },
                 {
                    "id":3,
                    "question_id":1,
                    "option_name":"Product",
                    "created_on":"2021-08-12T11:04:36.655948Z"
                 }
              ]
           },
           {
              "id":2,
              "question":"Any Comments",
              "store_id":1,
              "created_on":"2021-08-12T10:52:18.439996Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     },
     {
        "id":7,
        "name":"best",
        "rating":10,
        "vendor_rating_scale":false,
        "store_rating_scale":false,
        "store_id":1,
        "product_rating_scale":false,
        "order_rating_scale":true,
        "customer_rating_scale":false,
        "created_on":"2021-08-16T12:07:57.682800Z",
        "rating_group_id":"1-0-0-0-1-0",
        "feedback_query":[
           {
              "id":14,
              "question":"select things went well",
              "store_id":1,
              "created_on":"2021-08-16T12:10:21.459342Z",
              "question_type":"1",
              "feedback_options":[
                 {
                    "id":22,
                    "question_id":14,
                    "option_name":"delivery speed",
                    "created_on":"2021-08-16T12:11:51.663830Z"
                 },
                 {
                    "id":23,
                    "question_id":14,
                    "option_name":"price",
                    "created_on":"2021-08-16T12:11:51.668046Z"
                 }
              ]
           },
           {
              "id":15,
              "question":"please any comments",
              "store_id":1,
              "created_on":"2021-08-16T12:10:21.467229Z",
              "question_type":"0",
              "feedback_options":[

              ]
           }
        ]
     }
  ],
  "group_level_feedback_query":[
     {
        "id":11,
        "question":"please select what went well?",
        "store_id":1,
        "created_on":"2021-08-12T13:04:47.791177Z",
        "question_type":"1",
        "feedback_options":[
           {
              "id":16,
              "question_id":11,
              "option_name":"Delivery Speed",
              "created_on":"2021-08-12T13:09:18.313284Z"
           },
           {
              "id":17,
              "question_id":11,
              "option_name":"Package",
              "created_on":"2021-08-12T13:09:18.316439Z"
           },
           {
              "id":18,
              "question_id":11,
              "option_name":"Product",
              "created_on":"2021-08-12T13:09:18.320081Z"
           }
        ]
     },
     {
        "id":12,
        "question":"please select what was not good",
        "store_id":1,
        "created_on":"2021-08-12T13:04:47.795866Z",
        "question_type":"2",
        "feedback_options":[
           {
              "id":19,
              "question_id":12,
              "option_name":"Package",
              "created_on":"2021-08-12T13:09:51.854280Z"
           },
           {
              "id":20,
              "question_id":12,
              "option_name":"Delivery Speed",
              "created_on":"2021-08-12T13:09:51.857322Z"
           },
           {
              "id":21,
              "question_id":12,
              "option_name":"Product",
              "created_on":"2021-08-12T13:09:51.859991Z"
           }
        ]
     },
     {
        "id":13,
        "question":"any comments",
        "store_id":1,
        "created_on":"2021-08-12T13:04:47.797281Z",
        "question_type":"0"
     }
  ]
 }

3.1.4.7. Save Rating Feedback

This API is used to save ratings and feeddbacks from the Customer.

POST   saveRatingFeedback

Resource URI

<base URL>/comms/api/saveRatingFeedback

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
rated_user_type string yes displays the ratings of the user min. length is 1
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store. Use Store Save api to get the store id
customer_id integer yes id of the customer. Use customer register api to get customer id
order_id integer no id of the order. Use create order api to get the order id
rating_id integer yes the id of rating
feedback_query feedback string no displays feedback queries
question_id string
question_type string
feedback_options array of sring

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/comms/api/saveRatingFeedback

Example Body

{
   "rated_user_type":"0",
   "store_id":2,
   "customer_id":2,
   "vendor_id":1,
   "order_id":3,
   "order_lineitem_id":1,
   "rating_id":3,
   "feedback_query":[
      {
         "question_id":"5",
         "feedback":"hello",
         "question_type":"1",
         "feedback_options":[
            {
               "selected_option_id":1
            }
         ]
      }
   ]
}

**Example Response**
{
 "message":"Rating Created"
}

3.1.4.8. Get Rating Feedback

This API is used to get ratings and feedback from the Customer.

POST   getRatingFeedback

Resource URI

<base URL> /comms/api/getRatingFeedback

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
rated_user_type string yes displays the ratings of the user min. length is 1
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store using the api: /store2/api/store_save
customer_id integer yes id of the customer. Use Customer Register api to get customer id
order_id integer nos id of the order. Use create order api to get the order id

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/comms/api/getRatingFeedback

Example Body

{
   "store_id":"1",
   "rated_user_type":"0",
   "customer_id":93,
   "order_id":"1668"
}

Example Response

{
 "message":"Rating Retrieved Sucessfully",
 "total":1,
 "ratingscale":[
    {
       "id":43,
       "rating_id":6,
       "rating_id__rating":1,
       "order_id":1668,
       "order_lineitem_id":null,
       "vendor_id":null,
       "store_id":1,
       "product_id":null,
       "customer_id":93,
       "view_status":true,
       "rated_user_type":"0",
       "created_on":"2021-09-06T10:24:18.038856Z",
       "feedback_query":[
          {
             "id":376,
             "user_rating_id":43,
             "question_id":9,
             "feedback":"",
             "created_on":"2021-09-06T10:24:18.043005Z",
             "question__question_type":"2",
             "question__question":"please select option what was wrong",
             "feedback_options":[

             ]
          },
          {
             "id":377,
             "user_rating_id":43,
             "question_id":12,
             "feedback":"",
             "created_on":"2021-09-06T10:24:18.046062Z",
             "question__question_type":"2",
             "question__question":"please select what was not good",
             "feedback_options":[
                {
                   "id":20,
                   "question_id":12,
                   "option_name":"Delivery Speed",
                   "created_on":"2021-08-12T13:09:51.857322Z"
                }
             ]
          },
          {
             "id":378,
             "user_rating_id":43,
             "question_id":10,
             "feedback":"Affordable.",
             "created_on":"2021-09-06T10:24:18.056026Z",
             "question__question_type":"0",
             "question__question":"please help us to improve ",
             "feedback_options":[

             ]
          },
          {
             "id":379,
             "user_rating_id":43,
             "question_id":13,
             "feedback":"",
             "created_on":"2021-09-06T10:24:18.063610Z",
             "question__question_type":"0",
             "question__question":"any comments",
             "feedback_options":[

             ]
          },
          {
             "id":380,
             "user_rating_id":43,
             "question_id":11,
             "feedback":"",
             "created_on":"2021-09-06T10:24:18.067087Z",
             "question__question_type":"1",
             "question__question":"please select what went well?",
             "feedback_options":[
                {
                   "id":16,
                   "question_id":11,
                   "option_name":"Delivery Speed",
                   "created_on":"2021-08-12T13:09:18.313284Z"
                }
             ]
          }
       ]
    }
 ]
}

3.1.4.9. Account Verification

Using this API customer can verify before logging in to the registered account. A verification link will be sent to the registered email.

POST   Account_Verification

Resource URI

<base URL> /generic/api/Account_Verification

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
approver_type string yes displays the type of the approver
approval_type array of string yes provide a value from the list. Available values are customer, product
approval_for string yes provide a value from the list. Available values are customer_login, reset_password, product_publishing
approval_identifier string yes this field value will depend on the value chosen on the approval_for field
store_id integer yes displays the id of the store

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> /generic/api/Account_Verification

Example Body

{
  "store_id": 1,
  "approval_identifier": "xx@yy.com",
  "approver_type": "customer",
  "approval_for": "customer_login",
  "approval_type": "email
}

Example Response

{
  "message": "Customer is already Active"
}

3.1.5. Customer Address APIs

These set of APIs help to enter customer’s address details.

3.1.5.1. Add customer address

This API is used to add a new address for a customer.

POST   add_address

Resource URI

<base URL>/customer2/add_address

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
house_number string yes house number of the customer max length: 100 min length: 1
street string yes name of the street where the customer lives max length: 100 min length: 1
locality string yes name of the locality where the customer lives max length: 100 min length: 1
city string yes name of the city where the customer lives max length: 100 min length: 1
state string yes name of the state where the customer lives max length: 100 min length: 1
zipcode string yes zip code of the place where the customer lives max length: 15 min length: 1
country string yes name of the country where the customer lives max length: 25 min length: 1
default boolean no specifies if this is the default address
address_type array of string no specifies the type of address. Available values are: Work, Home and Other.
contact_number string no phone number of the customer max length is 15 min. length is 1

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token not entered
400 ensure this field has no more than 15 characters value specified exceeds the requirements
400 ensure this field has no more than 100 characters value specified exceeds the requirements
400 is not a valid choice specified value not listed in the array
400 This field may not be blank value not entered in required field
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/add_address

Example Body

{
 "house_number": "A-101, Shreeram",
 "street": "sector xx",
 "locality": "xx road",
 "city": "Bengaluru",
 "zipcode": "500000",
 "state": "Karnataka",
 "country": "India",
 "default": true,
 "address_type": "Home",
 "contact_number": "5100000000"
}

Example Response

{
   "message": "Added Address Successfully",
   "address": {
     "address_id": 247,
     "house_number": "A-101, Shreeram",
     "street": "sector xx",
     "locality": "xx road",
     "city": "Bengaluru",
     "state": "Karnataka",
     "country": "India",
     "default": true,
     "address_type": "Home",
     "zipcode": "500000",
     "contact_number": "5100000000"
   }
}

3.1.5.2. List customer address

This API is used to list all the addresses that a customer has added.

GET   list_address

Resource URI

<base URL>/customer2/list_address

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/list_address

Example Response

{
  "message":"Address set as Default Successfully",
    "address":{
       "address_id":248,
       "house_number":"A-102, Prestine",
       "street":"Dodda Banaswadi Main road",
       "locality":"Banaswadi",
       "city":"Bengaluru",
       "state":"Karnataka",
       "country":"India",
       "default":true,
       "address_type":"Home",
       "zipcode":"560002",
       "contact_number":"5100000000"
    }
}

3.1.5.3. Get default address

This API is used to return the default address of the customer.

GET   default_address

Resource URI

<base URL>/customer2/default_address

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token not entered
401 invalid authentication token incorrect Auth Token entered

Example Request

<base URL>/customer2/default_address

Example Response

{
   "message":"Default Address Retrieved Successfully",
   "address":{
      "address_id":20,
      "house_number":"24",
      "street":"xxxxx street",
      "locality":null,
      "city":"Bangalore",
      "country":"India",
      "default":true,
      "address_type":"Work"
   }
}

3.1.5.4. Set default address

This API is used to set an address as the default address of the customer.

POST   set_default_address

Resource URI

<base URL>/customer2/set_default_address

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
address_id integer yes id of the default address. Use add address api to get addrees id

Note

The identifier of the address is passed along with the body.
It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 address with address_id:7 does not exist incorrect address id entered
400 authentication token required authentication token not entered
401 invalid authentication token incorrect auth token entered

Example Request

<base URL>/customer2/set_default_address

Example Body

{
  "address_id": 248
}

Example Response

{
   "message":"Address set as Default Successfully",
   "address":{
      "address_id":248,
      "house_number":"A-102, Prestine",
      "street":"Dodda Banaswadi Main road",
      "locality":"Banaswadi",
      "city":"Bengaluru",
      "state":"Karnataka",
      "country":"India",
      "default":true,
      "address_type":"Home",
      "zipcode":"560002",
      "contact_number":"5100000000"
   }
}}

3.1.5.5. Delete address

This API is used to delete an address based on the identifier passed.

POST   delete_address

Resource URI

<base URL>/customer2/delete_address

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
address_id integer yes id of the default address. Use add address api to get addrees id

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/delete_address

Example Body

{
  "address_id": 247
}

Example Response

{
   "message":"Address deleted successfully"
}

3.1.5.6. Modify address

This API is used to modify all the fields in the address based on the identifier passed.

POST   modify_address

Resource URI

<base URL>/customer2/modify_address

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
address_id integer yes id of the store to which the customer is to be added. id of the default address. Use add address api to get addrees id
house_number string yes phone number of the customer max length: 100 min length: 1
street string yes name of the street where the customer lives max length: 100 min length: 1
locality string yes name of the locality where the customer lives max length: 100 min length: 1
city string yes name of the city where the customer lives max length: 100 min length: 1
state string yes name of the state where the customer lives max length: 100 min length: 1
zipcode string yes zip code of the place where the customer lives max length: 15 min length: 1
country string yes name of the country where the customer lives max length: 25 min length: 1
default boolean no specifies if this is the default address
address_type array of string no specifies the type of address. Available values are: Work, Home and Other.
contact_number string no the contact numbert of the customer max length: 25

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Authentication token required authentication token not entered
400 Ensure this field has no more than 15 characters value specified exceeds the conditions
400 Ensure this field has no more than 100 characters value specified exceeds the conditions
400 Is not a valid choice specified value not listed in the array
400 This field may not be blank value not entered in required field
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/modify_address

Example Body

{
  "house_number": "A-102, Prestine",
  "street": "xxxxx street Main road",
  "locality": "yyyy street main",
  "city": "Bengaluru",
  "zipcode": "500000",
  "state": "Karnataka",
  "country": "India",
  "default": true,
  "address_type": "Home",
  "contact_number": "5100000000",
  "address_id": 248
}

Example Response

{
  "message": "Updated Address Successfully",
  "address": {
    "address_id": 248,
    "house_number": "A-102, Prestine",
    "street": "xxxxx street Main road",
    "locality": "yyyy street main",
    "city": "Bengaluru",
    "state": "Karnataka",
    "country": "India",
    "default": true,
    "address_type": "Home",
    "zipcode": "500000",
    "contact_number": "5100000000"
  }
}

3.1.6. Customer Wish-list APIs

These set of APIs help to view/empty/modify a customer’s wish-list.

3.1.6.1. List Wish-list

GET   list_wishlist

This API is used to list all the items that a customer has wish-listed.

Resource URI

<base URL>/customer2/list_wishlist

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/list_wishlist

Example Response

{

"message": "Wishlisted Products Retrived Successfully",
"total_number_of_products": 2,
"products": [
  {
    "product_info": {
      "product_name": "Sukran Homes ",
      "product_id": 52,
      "storeid": 1,
      "product_data": {
        "52": [
          "image_filelocation/image_name1",
          "image_filelocation/image_name2",
          "image_filelocation/image_name3",
          "image_filelocation/image_name4"
        ],
        "attribute_data": {
          "prod disp pic": {
            "display_image": [
              "image_filelocation/image_name1",
              "image_filelocation/image_name2",
              "image_filelocation/image_name3",
              "image_filelocation/image_name4"
            ]
          }
        },
        "meta_data": [
          {
            "attr_name": "product_id",
            "attr_type": "product_id",
            "attr_value": [
              "52"
            ]
          },
          {
            "attr_name": "product_name",
            "attr_type": "product_name",
            "attr_value": "Sukran Homes "
          },
          {
            "attr_name": "prod disp pic",
            "attr_type": "display_image",
            "attr_value": [
              "image_filelocation/image_name5",
              "image_filelocation/image_name6",
              "image_filelocation/image_name7",
              "image_filelocation/image_name8"
            ]
          }
        ]
      },
      "product_type": "5",
      "product_rating": 5,
      "num_users_rated": 1,
      "bookable_enum_attribute_values": [],
      "form": [],
      "category_id": 59,
      "price": "375300",
      "date": "2020-02-13T10:08:53.179874Z",
      "product_group_id": 152,
      "product_belonging_name": "Shatru Sukran Home Pack New",
      "product_atrribute_values": [
        {
          "attr_name": "Price",
          "attr_type": "price",
          "attr_value": "375300"
        },
        {
          "attr_name": "On_Offer",
          "attr_type": "on_offer",
          "attr_value": null
        },
        {
          "attr_name": "Offer_Name",
          "attr_type": "offer_name",
          "attr_value": "Currently not on offer"
        },
        {
          "attr_name": "Offer_Price",
          "attr_type": "offer_price",
          "attr_value": "375300"
        },
        {
          "attr_name": "Offer_Discount",
          "attr_type": "offer_discount",
          "attr_value": "0"
        },
        {
          "attr_name": "Offer_Start_Date",
          "attr_type": "offer_start_date",
          "attr_value": ""
        },
        {
          "attr_name": "Offer_End_Date",
          "attr_type": "offer_end_date",
          "attr_value": ""
        },
        {
          "attr_name": "prod disp img",
          "attr_type": "display_image",
          "attr_value": "image_filelocation/image_name1,image_filelocation/image_name2,image_filelocation/image_name3,image_filelocation/image_name4"
        }
      ]
    },
    "publisher_info": {
      "publisher_name": "Mohammed Ali",
      "publisher_type": 3,
      "publisher_id": 1,
      "publisher_rating": 5,
      "num_users_rated": 1
    }
  },
  {
    "product_info": {
      "product_name": "All  in one - House maintenance",
      "product_id": 68,
      "storeid": 1,
      "product_data": {
        "68": [
          "image_filelocation/image_name"
        ],
        "attribute_data": {
          "Dis Img": {
            "display_image": [
              "image_filelocation/image_name"
            ]
          }
        },
        "meta_data": [
          {
            "attr_name": "product_id",
            "attr_type": "product_id",
            "attr_value": [
              "68"
            ]
          },
          {
            "attr_name": "product_name",
            "attr_type": "product_name",
            "attr_value": "All  in one - House maintenance"
          },
          {
            "attr_name": "Dis Img",
            "attr_type": "display_image",
            "attr_value": [
              "image_filelocation/image_name"
            ]
          }
        ]
      },
      "product_type": "6",
      "product_rating": 5,
      "num_users_rated": 1,
      "bookable_enum_attribute_values": [
        {
          "option": "Morning",
          "start_range": "9:00am",
          "end_range": "12:30pm",
          "image_path": null,
          "redirect_url": null,
          "product_attribute_id": 729,
          "slots": [
            {
              "start_time": "09:00:00AM",
              "end_time": "10:00:00AM"
            },
            {
              "start_time": "10:00:00AM",
              "end_time": "11:00:00AM"
            },
            {
              "start_time": "11:00:00AM",
              "end_time": "12:00:00PM"
            }
          ],
          "total_slots": 3
        },
        {
          "option": "Mid-Day",
          "start_range": "2:00pm",
          "end_range": "5:00pm",
          "image_path": null,
          "redirect_url": null,
          "product_attribute_id": 729,
          "slots": [
            {
              "start_time": "14:00:00PM",
              "end_time": "15:00:00PM"
            },
            {
              "start_time": "15:00:00PM",
              "end_time": "16:00:00PM"
            },
            {
              "start_time": "16:00:00PM",
              "end_time": "17:00:00PM"
            }
          ],
          "total_slots": 3
        },
        {
          "option": "01/22/2020",
          "start_range": "",
          "end_range": "",
          "image_path": null,
          "redirect_url": null,
          "product_attribute_id": 731,
          "slots": [],
          "total_slots": 0
        },
        {
          "option": "01/23/2020",
          "start_range": "",
          "end_range": "",
          "image_path": null,
          "redirect_url": null,
          "product_attribute_id": 731,
          "slots": [],
          "total_slots": 0
        },
        {
          "option": "Friday",
          "start_range": "",
          "end_range": "",
          "image_path": null,
          "redirect_url": null,
          "product_attribute_id": 732,
          "slots": [],
          "total_slots": 0
        }
      ],
      "form": [],
      "category_id": 25,
      "price": "15",
      "date": "2020-05-07T09:37:47.773401Z",
      "product_group_id": 168,
      "product_belonging_name": "All In one cleaners",
      "product_atrribute_values": [
        {
          "attr_name": "Price",
          "attr_type": "price",
          "attr_value": "15"
        },
        {
          "attr_name": "On_Offer",
          "attr_type": "on_offer",
          "attr_value": null
        },
        {
          "attr_name": "Offer_Name",
          "attr_type": "offer_name",
          "attr_value": "Currently not on offer"
        },
        {
          "attr_name": "Offer_Price",
          "attr_type": "offer_price",
          "attr_value": "15"
        },
        {
          "attr_name": "Offer_Discount",
          "attr_type": "offer_discount",
          "attr_value": "0"
        },
        {
          "attr_name": "Offer_Start_Date",
          "attr_type": "offer_start_date",
          "attr_value": ""
        },
        {
          "attr_name": "Offer_End_Date",
          "attr_type": "offer_end_date",
          "attr_value": ""
        },
        {
          "attr_name": "Booking Product Name",
          "attr_type": "booking_product_name",
          "attr_value": "Initial check"
        },
        {
          "attr_name": "Delay Booking In Mins",
          "attr_type": "delay_booking_in_mins",
          "attr_value": "30"
        },
        {
          "attr_name": "Max Booking Window In Days",
          "attr_type": "max_booking_window_in_days",
          "attr_value": "30"
        },
        {
          "attr_name": "Slot Duration In Mins",
          "attr_type": "slot_duration_in_mins",
          "attr_value": "60"
        },
        {
          "attr_name": "Image",
          "attr_type": "display_image",
          "attr_value": "image_filelocation/image_name"
        }
      ]
    },
    "publisher_info": {
      "publisher_name": "ADCB B2C Marketplace",
      "publisher_type": 2,
      "publisher_id": 1,
      "publisher_rating": 5,
      "num_users_rated": 1
    }
  }
 ]
}

3.1.6.2. Empty Wish list

This API removes everything that was added into the wish list of the customer.

DELETE   empty_wishlist

Resource URI

<base URL>/customer2/empty_wishlist

Resource Information

Method DELETE
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token not entered
401 invalid authentication token incorrect Auth Token entered

Example Request

<base URL>/customer2/empty_wishlist

Example Response

{
   "message":"Wishlist Emptied"
}

3.1.6.3. Wish-list Item

This API accepts a product identifier and adds the corresponding product to the customer’s wish-list.

POST   wishlist_item

Resource URI

<base URL>/customer2/wishlist_item

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
product_id integer yes id of the product. Use Create Product api to get the product id
product_group_id integer yes id of the product group
product_belonging_name string yes name of the product owner

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/wishlist_item

Example Body

{
   "product_id":47,
   "product_group_id":1147,
   "product_belonging_name":"fresh carps"
}

Example Response

{
  "message": "Product Added to Wishlist"
}

3.1.6.4. Modify Wish-list

This API deletes an item that was added to the Wish List.

POST   delete_wishlist_items

Resource URI

<base URL>/customer2/delete_wishlist_item

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
product_id integer yes id of the product. Use Create Product api to get the product id
product_group_id integer yes id of the product group
product_belonging_name string yes name of the product owner

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/delete_wishlist_item

Example Body

{
    "product_id": 47,
    "product_group_id": 1147,
    "product_belonging_name": "fresh carps"
}

Example Response

{
   "message": "Product Deleted from Wishlist Successfully"
}

3.1.7. Cart Management APIs

These set of APIs help to manage a customer’s wish-list.

3.1.7.1. Add products to cart

This API enables a customer to pass a product/list of products that has to be added to the cart. If an item already exists in the cart then the quantities are added up.

POST   add_product_to_cart

Resource URI

<base URL>/customer2/add_product_to_cart

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
product_id integer yes id of the product. Use Create Product api to get the product id
quantity integer no amount of product available in the store
product_group_id integer yes id of the product group
product_belonging_name string yes name of the product owner

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid authentication token incorrect Auth token entered
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/add_product_to_cart

Note

Details required to pass in the body can be taken Search Product from API.

Example Body

{
   "product_id":3,
   "quantity":1,
   "product_group_id":13,
   "product_belonging_name":"Tuna Saltwater Fish"
}

Example Response

{
   "message":"Successfully Added"
}

3.1.7.2. List cart products

This API lists all the products that a customer has in his cart along with some relevant information of the products.

GET   list_cart_products

Resource URI

<base URL>/customer2/list_cart_products

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid authentication token incorrect Auth token entered
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/list_cart_products

Example Response

{
   "message":"List of Products Retrived Successfully",
   "total_number_of_products":0,
   "products":[

   ]
}

3.1.7.3. Modify/Delete items

This API allows you to modify the cart.

POST   modify_or_delete_cart_products

Resource URI

<base URL>/customer2/modify_or_delete_cart_products

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication. Yes

Resource Properties

Parameter Data Type Mandatory Description
product_id integer yes id of the product. Use Create Product api to get the product id
quantity integer no amount of product available in the store
delete boolean no specifies if the product needs to be deleted. The delete flag if set to true will delete the corresponding item from the cart. If the delete is set to false, quantity must be specified in the body parameters so as to update the quantity.
product_group_id integer yes id of the product group
product_belonging_name string yes name of the product length is 200 with min. length of 1

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/modify_or_delete_cart_products

Example Body

{
   "product_id": 47,
   "product_group_id": 1147,
   "product_belonging_name": "fresh carps",
   "delete": 1
}

Example Response

{
   "message": "Product Deleted Successfully"

}

3.1.7.4. Empty cart

This API removes all the items from the cart.

DELETE   delete_all_products_from_cart

Resource URI

<base URL>/customer2/delete_all_products_from_cart

Resource Information

Method DELETE
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/delete_all_products_from_cart

Example Response

{
   "message":"Emptied the basket successfully"
}

3.1.8. Customer Order APIs

These set of APIs help to manage customer orders.

3.1.8.1. Create Order

This API allows a customer to create an order. It accepts a list of products that a customer might wish to order and places the order.

POST   create_order

Resource URI

<base URL>/customer2/create_order

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
total_mrp number yes total max. retail price of the product
total_discount_price number yes total discount price oonf the product
products product_id integer yes id of the product. Use Create Product api to get the product id
  product_group_id integer yes id of the product group
  product_belonging_name string yes name of the product min length is 1
  quantity integer no amount of product available in the store min length is 0
  product_media string no the media of the product min length is 1
  mrp number yes maximum retail price of the product
  discount_price number yes discount price of the product
  booking date string yes the date of booking
    time string yes the time of booking
  on_offer boolean no the product in offer default value is false
  offer name string no the name of the offer max length is 40 min length is 1
  discount_percentage number no the discounted ra te in percentage is 40 min length is 1
  shipping address integer no the address to product needs to ship
  customer_id integer no the id of the customer
  has_formset_data boolean no the formset information
payment_option string no payment option for the storefront users
contact_number string no phone number of the customer min length is 1
billing_address integer no the billing address of the customer
shipping_address integer no the billing address of the customer
delivery slot date string yes the date of the delivery slot
  time string yes the time of the delivery slot
  slot string yes the time of the delivery slot
  slot id integer yes the delivery slot id

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/create_order

Example Body

{
   "delivery_charges": 49,
   "total_discount_price": "350.00",
   "payment_option": "Online",
   "billing_address": 244,
   "delivery_slot": {
    "date": "2021-07-29",
    "time": "07:00",
      "slot_id": 1,
    "slot": "07:00 - 07:30"
  },
  "total_mrp": "350.00",
  "products": [{
   "product_group_id": 1147,
   "quantity": 1,
   "on_offer": "off",
   "discount_price": "350.00",
   "product_id": 47,
   "product_belonging_name": "fresh carps",
   "mrp": "350.00",
   "discount_percentage": "0.00",
   "shipping_address": 244,
   "offer_name": "Currently not on offer"
  }]
}

Example Response

{
    "message": "Order Created Successfully",
    "order_id": 637
}

3.1.8.2. List customer order

This API lists all the orders of the customer. This will also contain details regarding all the items that is contained in the order.

GET   list_customer_orders

Resource URI

<base URL>/customer2/list_customer_orders

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

No parameters are required to be passed.

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/list_customer_orders

Example Response

{
   "message":"No Orders"
}

Or

{
   "message":"Retrieved Sucessfully",
   "orders":[
      {
         "order_id":638,
         "total_mrp":350.0,
         "total_discount_price":350.0,
         "payment_option":"Online",
         "status":"Paid",
         "created_on":"2021-07-22T06:48:28.819690Z",
         "updated_on":"2021-07-22T06:48:45.240597Z",
         "store_id":1,
         "contact_number":null,
         "delivery_charges":49,
         "email_notification":false,
         "payment_order_id":"",
         "billing_address":{
            "house_number":"mb",
            "street":"khb",
            "locality":"hg",
            "city":"hff",
            "state":"jvg",
            "country":"jg",
            "default":true,
            "address_type":"Home",
            "zipcode":"560001",
            "contact_number":"7120000000"
         },
         "products":[
            {
               "line_item_id":806,
               "product_id":47,
               "name":"Carps",
               "store_id":1,
               "product_media":[
                  "media/store2/1/product2/47/fish.jpeg"
               ],
               "images":[
                  "media/store2/1/product2/47/fish.jpeg"
               ],
               "publisher_name":"Fisheries Vendor",
               "is_published_by_store_admin":false,
               "on_offer":false,
               "is_bookable_service":false,
               "product_group_id":1147,
               "product_belonging_name":"fresh carps",
               "product_type":1,
               "category_id":7,
               "publisher_id":11,
               "mrp":350.0,
               "discount_price":350.0,
               "quantity":1,
               "status":"Order Placed",
               "shipper_id":"ABC Shipping",
               "created_on":"2021-07-22T06:48:28.849659Z",
               "updated_on":"2021-07-22T06:48:59.681908Z",
               "current_journey_id":122,
               "current_module_id":1,
               "current_module_name":"Order Placed",
               "eta_day":0,
               "eta_hours":0,
               "eta_minutes":0,
               "journey_created_on":"2021-06-30 09:32:40",
               "product_journey":[
                  {
                     "journey_id":122,
                     "store_id":1,
                     "product_id":47,
                     "vendor_id":11,
                     "module_id":1,
                     "eta_day":0,
                     "eta_hours":0,
                     "eta_minutes":0,
                     "display_order":0,
                     "module_name":"Order Placed",
                     "success_phase":true,
                     "journey_group_id":"1-11-47-1625045560",
                     "failure_phase_mapping":null,
                     "vendor_type":0,
                     "module_type":"0"
                  },
                  {
                     "journey_id":123,
                     "store_id":1,
                     "product_id":47,
                     "vendor_id":11,
                     "module_id":2,
                     "eta_day":0,
                     "eta_hours":0,
                     "eta_minutes":0,
                     "display_order":1,
                     "module_name":"Order InTransit",
                     "success_phase":true,
                     "journey_group_id":"1-11-47-1625045560",
                     "failure_phase_mapping":null,
                     "vendor_type":0,
                     "module_type":"0"
                  },
                  {
                     "journey_id":124,
                     "store_id":1,
                     "product_id":47,
                     "vendor_id":11,
                     "module_id":41,
                     "eta_day":0,
                     "eta_hours":0,
                     "eta_minutes":0,
                     "display_order":2,
                     "module_name":"intransit",
                     "success_phase":true,
                     "journey_group_id":"1-11-47-1625045560",
                     "failure_phase_mapping":null,
                     "vendor_type":0,
                     "module_type":"1"
                  },
                  {
                     "journey_id":125,
                     "store_id":1,
                     "product_id":47,
                     "vendor_id":11,
                     "module_id":31,
                     "eta_day":0,
                     "eta_hours":0,
                     "eta_minutes":0,
                     "display_order":3,
                     "module_name":"Out For Delivery",
                     "success_phase":true,
                     "journey_group_id":"1-11-47-1625045560",
                     "failure_phase_mapping":null,
                     "vendor_type":0,
                     "module_type":"1"
                  },
                  {
                     "journey_id":126,
                     "store_id":1,
                     "product_id":47,
                     "vendor_id":11,
                     "module_id":3,
                     "eta_day":0,
                     "eta_hours":0,
                     "eta_minutes":0,
                     "display_order":4,
                     "module_name":"Order Complete",
                     "success_phase":true,
                     "journey_group_id":"1-11-47-1625045560",
                     "failure_phase_mapping":null,
                     "vendor_type":0,
                     "module_type":"0"
                  }
               ],
               "is_watchable":false,
               "watchable_content":"",
               "is_a_game":false,
               "game_url":"",
               "customer_shipping_address":{
                  "address_id":245,
                  "house_number":"mb",
                  "street":"khb",
                  "locality":"hg",
                  "city":"hff",
                  "state":"jvg",
                  "country":"jg",
                  "default":true,
                  "address_type":"Home",
                  "zipcode":"560001",
                  "contact_number":"7120000000"
               }
            }
         ]
      }
   ]
}

3.1.9. Store APIs

These set of APIs help to manage store related activities.

3.1.9.1. Fetch Store

This API is used to fetch store.

POST   fetch store

Resource URI

<base URL>/product2/api/fetch_store

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store. Store_id is dependend on create store. Use Store Save api to get the store id

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid authentication token incorrect Auth token entered
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/fetch_store

Example Body

{
   "store_id":"1"
}

Example Response

{
   "status":true,
   "data":{
      "store_status":1,
      "created_date":"2020-11-02T03:38:40.134226+00:00",
      "creator_id":1,
      "num_users_rated":1,
      "last_updated":"2020-11-02T03:38:40.134260+00:00",
      "ratings":5.0,
      "store_id":1,
      "store_name":"XXXX FishLand",
      "store_type":"2",
      "max_booking_window":5,
      "delay_in_booking":5,
      "store_data":{
         "attribute_data":{
            "DisplayLogo":{
               "display_logo":[
                  "image_filelocation\image_name1.jpeg"
               ]
            },
            "DisplayImage":{
               "display_image":[
                  ""image_filelocation\image_name2.jpg"
               ]
            },
            "DisplayVideo":{
               "display_video":[
                  ""video_filelocation\video_name.mp4"
               ]
            }
         },
         "forms_data":[

         ],
         "1":[
            "image_filelocation\image_name1.jpeg",
            "video_filelocation\video_name.mp4",
            "image_filelocation\image_name2.jpg"
         ],
         "meta_data":[
            {
               "attr_name":"id",
               "attr_type":"id",
               "attr_value":[
                  "1"
               ]
            },
            {
               "attr_name":"context",
               "attr_type":"context",
               "attr_value":[
                  "dmstore"
               ]
            },
            {
               "attr_name":"Ext__DisplayLogo",
               "attr_type":"Ext__DisplayLogo",
               "attr_value":[
                  "image_filelocation\image_name1.jpeg"
               ]
            },
            {
               "attr_name":"Ext__DisplayImage",
               "attr_type":"Ext__DisplayImage",
               "attr_value":[
                  "image_filelocation\image_name2.jpg"
               ]
            },
            {
               "attr_name":"DisplayVideo",
               "attr_type":"display_video",
               "attr_value":[
                  "video_filelocation\video_name.mp4"
               ]
            }
         ]
      },
      "store_delivery_slots":[
         {
            "attribute_name":"Parts Of The Day",
            "attribute_type":"parts_of_the_day",
            "attribute_value":[
               {
                  "num_booking_per_slot":5,
                  "delay_in_booking":1,
                  "slots":[
                     {
                        "start_time":"07:00:00AM",
                        "end_time":"07:30:00AM"
                     }
                  ],
                  "max_booking_window":5,
                  "end_range":"9:00am",
                  "start_range":"7:00am",
                  "slots_duration_in_mins":30,
                  "option":"Early Morning"
               },
               {
                  "num_booking_per_slot":5,
                  "delay_in_booking":1,
                  "slots":[
                     {
                        "start_time":"07:00:00AM",
                        "end_time":"07:10:00AM"
                     },
                     {
                        "start_time":"07:10:00AM",
                        "end_time":"07:20:00AM"
                     }
                  ],
                  "max_booking_window":5,
                  "end_range":"11:00am",
                  "start_range":"7:00am",
                  "slots_duration_in_mins":10,
                  "option":"Morning"
               },
               {
                  "num_booking_per_slot":5,
                  "delay_in_booking":1,
                  "slots":[
                     {
                        "start_time":"13:00:00PM",
                        "end_time":"13:30:00PM"
                     },
                     {
                        "start_time":"13:30:00PM",
                        "end_time":"14:00:00PM"
                     },
                     {
                        "start_time":"14:00:00PM",
                        "end_time":"14:30:00PM"
                     }
                  ],
                  "max_booking_window":5,
                  "end_range":"8:00pm",
                  "start_range":"1:00pm",
                  "slots_duration_in_mins":30,
                  "option":"Mid Day"
               }
            ]
         },
         {
            "attribute_name":"Exclude Dates",
            "attribute_type":"exclude_dates",
            "attribute_value":[
               {
                  "option":"06/01/2021"
               },
               {
                  "option":"05/28/2021"
               }
            ]
         },
         {
            "attribute_name":"Exclude Days",
            "attribute_type":"exclude_days",
            "attribute_value":[
               {
                  "option":"Saturday"
               },
               {
                  "option":"Sunday"
               }
            ]
         }
      ],
      "has_delivery_charge":true,
      "min_order_for_free_delivery":499,
      "delivery_charge":49
   }
}

3.1.9.2. Fetch Category

This API returns all categories (up to 2 levels) related to that store. The API can be used to drill down to any specific category and also define the number of levels you want to see from that category.

POST   level_based_category

Resource URI

<base URL>/product2/api/level_based_category

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store. Store_id is dependend on create store. Use Store Save api to get the store id
category_id integer no id of the category
level integer no level of the category
product_type integer no type of product

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/product2/api/level_based_category

Example Body

{
"store_id":"46"
}

Example Response

{
   "data":{
      "childrens":[

      ],
      "grand_childrens":[

      ],
      "category":{
         "category_status":"1",
         "category_group_id":null,
         "category_id":384,
         "category_name":"DSLR Cameras",
         "category_type":"1",
         "child_level":3,
         "parent_category_hierarchy":"366368379",
         "parent_category_id":379,
         "store_admin_id":1,
         "storeid":47,
         "category_data":{
            "384":[
               "image_filelocation\image_name1.jpg"
            ],
            "attribute_data":{
               "image":{
                  "display_image":[
                     "image_filelocation\image_name2.jpg"
                  ]
               }
            },
            "meta_data":{
               "image__":[
                  "display_image"
               ],
               "category_id":[
                  "384"
               ]
            }
         }
      }
   },
   "all_category_facets":[

   ],
   "facet_info":[

   ]
}

3.1.9.3. Fetch Product

This API returns the product related to a particular store and allows the user to drill down at category, product, publisher and exact publishing granularity. The API also takes an option query parameter to support facets and custom filtering. You can also pass a product type parameter to get the exact type of products. The list of product types that are currently supported are: Service Product, Buyable Product, Subscription Product, Product Application and Packaged product.

POST   search_product

Resource URI

<base URL>/product2/api/search_product

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store. Store_id is dependend on create store. Use Store Save api to get the store id

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/product2/api/search_product

Example Body

{
   "store_id":"1"
}

Example Response

{
   "product_name":"Sukran Homes ",
   "product_id":52,
   "storeid":1,
   "product_data":{
      "52":[
         "image_filelocation/image_name1.jpg",
         "image_filelocation/image_name2.jpg",
         "image_filelocation/image_name3.jpg",
         "image_filelocation/image_name4.png"
      ],
      "attribute_data":{
         "prod disp pic":{
            "display_image":[
               "image_filelocation/image_name1.jpg",
               "image_filelocation/image_name2.jpg",
               "image_filelocation/image_name3.jpg",
               "image_filelocation/image_name4.png"
            ]
         }
      },
      "meta_data":[
         {
            "attr_name":"product_id",
            "attr_type":"product_id",
            "attr_value":[
               "52"
            ]
         },
         {
            "attr_name":"product_name",
            "attr_type":"product_name",
            "attr_value":"Sukran Homes "
         },
         {
            "attr_name":"prod disp pic",
            "attr_type":"display_image",
            "attr_value":[
               "image_filelocation/image_name1.jpg",
               "image_filelocation/image_name2.jpg",
               "image_filelocation/image_name3.jpg",
               "image_filelocation/image_name4.png"
            ]
         }
      ]
   },
   "product_type":"5",
   "product_rating":5,
   "num_users_rated":1,
   "bookable_enum_attribute_values":[

   ],
   "form":[

   ]
}
},
{
   "_index":"product_index",
   "_type":"product",
   "_id":"116",
   "_score":0,
   "_source":{
      "product_name":"Interior Tour",
      "product_id":116,
      "storeid":1,
      "product_data":{
         "116":[
            "image_filelocation/image_name4logo.jpg",
            "product_location/product_name"
         ],
         "attribute_data":{
            "image":{
               "display_image":[
                  "image_filelocation/image_name4logo.jpg"
               ]
            },
            "video":{
               "display_video":[
                  "product_location/product_name"
               ]
            }
         },
         "meta_data":[
            {
               "attr_name":"product_id",
               "attr_type":"product_id",
               "attr_value":[
                  "116"
               ]
            },
            {
               "attr_name":"product_name",
               "attr_type":"product_name",
               "attr_value":"Interior Tour"
            },
            {
               "attr_name":"image",
               "attr_type":"display_image",
               "attr_value":[
                  "image_filelocation/image_name4logo.jpg"
               ]
            },
            {
               "attr_name":"video",
               "attr_type":"display_video",
               "attr_value":[
                  "product_location/product_name"
               ]
            }
         ]
      },
      "product_type":"6",
      "product_rating":5,
      "num_users_rated":1,
      "bookable_enum_attribute_values":[

      ],
      "form":[

      ]
   }
}
]
}
}

POST   search_product

Resource URI

<base URL>/product2/api/v2/search_product

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store. Use Store Save api to get the store id
product_id string no id of the product or list of ids
product_group_id string no id of the product group or list of group ids with max length is 200 min. length is 1
product _belonging_name string no product owner name max length is 200 min. length is 1
category_id integer yes id of the category. Use Create Category api to get the category id
product_id string no id of the product or list of ids
product_group_id string no id of the product group or list of group ids with max length is 200 min. length is 1
product _belonging_name string no product owner name max length is 200 min. length is 1
category_id integer yes id of the category. Use Create Category api to get the category id
level integer no displays the level of the category
parent_category _hierarchy integer no the hierarchy of the parent level
publisher_information _id integer no the id of the publisher information
product_type string no displays the type of the product
category_facets_query array of string no  
input_category_facets array of string no  

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/product2/api/v2/search_product

Example Body

{
      "store_id": "1",
      "category_id": "7",
      "level": 2,
      "parent_category_hierarchy": "25",
      "product_id": 47,
      "product_belonging_name": "fresh carps 2kg",
      "product_group_id": 1147
}

Example Response

{
 "facet_info":[

 ],
 "search_result":[
    {
       "category_id":7,
       "product_per_category":{
          "count":1,
          "product_ids":[
             47
          ],
          "publisher_ids":[
             "113"
          ],
          "product_details":[
             {
                "product_id":47,
                "product_details":{
                   "product_name":"Carps",
                   "product_id":47,
                   "storeid":1,
                   "product_data":{
                      "47":[
                         "image_filelocation/image_name1.jpg"
                      ],
                      "attribute_data":{
                         "Product Image":{
                            "display_image":[
                               "image_filelocation/image_name1.jpg"
                            ]
                         }
                      },
                      "meta_data":[
                         {
                            "attr_name":"product_id",
                            "attr_type":"product_id",
                            "attr_value":[
                               "47"
                            ]
                         },
                         {
                            "attr_name":"product_name",
                            "attr_type":"product_name",
                            "attr_value":"Carps"
                         },
                         {
                            "attr_name":"Product Image",
                            "attr_type":"display_image",
                            "attr_value":[
                               "image_filelocation/image_name1.jpg"
                            ]
                         }
                      ]
                   },
                   "product_type":"1",
                   "product_rating":5.0,
                   "num_users_rated":1,
                   "bookable_enum_attribute_values":[

                   ],
                   "form":[

                   ]
                },
                "publisher_per_product":{
                   "count":1,
                   "publsiher_details":[
                      {
                         "publishings_per_publisher":{
                            "count":1,
                            "publishings_per_publisher_details":[
                               {
                                  "per_publishing_product_attribute_values":[
                                     {
                                        "product_formset_belonging_name":"Default",
                                        "product_formset_context":"Product",
                                        "product_form_details":[
                                           {
                                              "product_form_id":1,
                                              "product_form_storefront_ui_name":"Title",
                                              "product_form_type":"BASIC PRODUCT INFO",
                                              "product_form_status":"Active",
                                              "product_form_storefront_ui_position":"NORMAL",
                                              "product_form_scope":"To All",
                                              "product_form_name":"Default",
                                              "product_form_context":"Product",
                                              "product_form_status_id":1,
                                              "product_form_attributes":[
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"text",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"direct from sea",
                                                    "attribute_storefront_ui_representation_type":"Short-Description",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1121,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Short Description",
                                                    "attribute_ui_type":"Text",
                                                    "attribute_value":"direct from sea",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"price",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"700",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1122,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Price",
                                                    "attribute_ui_type":"Price",
                                                    "attribute_value":"700",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"on_offer",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"on",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1123,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"On_Offer",
                                                    "attribute_ui_type":"On_Offer",
                                                    "attribute_value":"on",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"offer_name",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"June offer",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1124,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Offer_Name",
                                                    "attribute_ui_type":"Offer_Name",
                                                    "attribute_value":"June offer",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"offer_price",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"630.0",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1125,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Offer_Price",
                                                    "attribute_ui_type":"Offer_Price",
                                                    "attribute_value":"630.0",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"offer_discount",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"10",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1126,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Offer_Discount",
                                                    "attribute_ui_type":"Offer_Discount",
                                                    "attribute_value":"10",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"offer_start_date",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"01-06-2021",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1127,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Offer_Start_Date",
                                                    "attribute_ui_type":"Offer_Start_Date",
                                                    "attribute_value":"01-06-2021",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"offer_end_date",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"30-06-2021",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1128,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Offer_End_Date",
                                                    "attribute_ui_type":"Offer_End_Date",
                                                    "attribute_value":"30-06-2021",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"display_image",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"image_filelocation/image_name2.jpg,image_filelocation/image_name3.jpg,image_filelocation/image_name4.jpg,image_filelocation/image_name5.jpeg,
                                                    "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1134,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Profile Image",
                                                    "attribute_ui_type":"Image-upload",
                                                    "attribute_value":"image_filelocation/image_name2.jpg,image_filelocation/image_name3.jpg,image_filelocation/image_name4.jpg,image_filelocation/image_name5.jpeg,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"display_image",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"image_filelocation/image_name5.jpeg",
                                                    "attribute_storefront_ui_representation_type":"List-Logo",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1135,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"List Image",
                                                    "attribute_ui_type":"Image-upload",
                                                    "attribute_value":"image_filelocation/image_name5.jpeg",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"stock_quantity",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"11",
                                                    "attribute_storefront_ui_representation_type":"Inline-Text",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1136,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Stock Quantity",
                                                    "attribute_ui_type":"Stock_quantity",
                                                    "attribute_value":"11",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"delivery_charge",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1137,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Apply Delivery Charge",
                                                    "attribute_ui_type":"Delivery_Charge",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"slashable",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1138,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Is Slashable",
                                                    "attribute_ui_type":"Slashable",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"fixed_price",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1139,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Is Fixed Price",
                                                    "attribute_ui_type":"Fixed_Price",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"charges",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"0",
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1140,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Charges",
                                                    "attribute_ui_type":"Charges",
                                                    "attribute_value":"0",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"is_watchable",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1141,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Is Watchable",
                                                    "attribute_ui_type":"Is_Watchable",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"watchable_content",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"",
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1142,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Watchable Content",
                                                    "attribute_ui_type":"Watchable_Content",
                                                    "attribute_value":"",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"is_a_game",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1143,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Is a Game",
                                                    "attribute_ui_type":"Is_Game",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"game_url",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"",
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1144,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Game URL",
                                                    "attribute_ui_type":"Game_URL",
                                                    "attribute_value":"",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"is_region_restricted",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"NORMAL",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":null,
                                                    "attribute_storefront_ui_representation_type":"Title",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1145,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Is Region Restricted",
                                                    "attribute_ui_type":"Is_Region_restricted",
                                                    "attribute_value":null,
                                                    "is_attribute_split_search_enabled":false
                                                 }
                                              ]
                                           }
                                        ],
                                        "product_formset_status":"ACTIVE",
                                        "is_multi_instance_formset":false,
                                        "product_formsetname":"Default",
                                        "product_formset_storefront_ui_name":"Default",
                                        "product_formset_group_id":1147,
                                        "product_formset_storefront_ui_position":"NORMAL",
                                        "product_formsetid":1,
                                        "product_formset_type":"BASIC PRODUCT INFO",
                                        "product_formset_scope":"To All",
                                        "product_formset_status_id":1
                                     },
                                     {
                                        "product_formset_belonging_name":"Pricing",
                                        "product_formset_context":"Product",
                                        "product_form_details":[
                                           {
                                              "product_form_id":1,
                                              "product_form_storefront_ui_name":"Title",
                                              "product_form_type":"BASIC PRODUCT INFO",
                                              "product_form_status":"Active",
                                              "product_form_storefront_ui_position":"NORMAL",
                                              "product_form_scope":"To All",
                                              "product_form_name":"Default",
                                              "product_form_context":"Product",
                                              "product_form_status_id":1,
                                              "product_form_attributes":[
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"valued_enum",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"2 Kg",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1129,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Net Weight",
                                                    "attribute_ui_type":"Drop-down",
                                                    "attribute_value":"2 Kg",
                                                    "is_attribute_split_search_enabled":false
                                                 },
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"valued_enum",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"Curry Cut",
                                                    "attribute_storefront_ui_representation_type":"Price",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1130,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Type",
                                                    "attribute_ui_type":"Drop-down",
                                                    "attribute_value":"Curry Cut",
                                                    "is_attribute_split_search_enabled":false
                                                 }
                                              ]
                                           }
                                        ],
                                        "product_formset_status":"ACTIVE",
                                        "is_multi_instance_formset":false,
                                        "product_formsetname":"Pricing",
                                        "product_formset_storefront_ui_name":"Pricing",
                                        "product_formset_group_id":1147,
                                        "product_formset_storefront_ui_position":"TAB",
                                        "product_formsetid":3,
                                        "product_formset_type":"BASIC PRODUCT INFO",
                                        "product_formset_scope":"To All",
                                        "product_formset_status_id":1
                                     },
                                     {
                                        "product_formset_belonging_name":"About",
                                        "product_formset_context":"Product",
                                        "product_form_details":[
                                           {
                                              "product_form_id":1,
                                              "product_form_storefront_ui_name":"Title",
                                              "product_form_type":"BASIC PRODUCT INFO",
                                              "product_form_status":"Active",
                                              "product_form_storefront_ui_position":"NORMAL",
                                              "product_form_scope":"To All",
                                              "product_form_name":"Default",
                                              "product_form_context":"Product",
                                              "product_form_status_id":1,
                                              "product_form_attributes":[
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"description",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"<p>fresh sea food</p>",
                                                    "attribute_storefront_ui_representation_type":"Description",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1131,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"About",
                                                    "attribute_ui_type":"Rich-text",
                                                    "attribute_value":"<p>fresh sea food</p>",
                                                    "is_attribute_split_search_enabled":false
                                                 }
                                              ]
                                           }
                                        ],
                                        "product_formset_status":"ACTIVE",
                                        "is_multi_instance_formset":false,
                                        "product_formsetname":"About",
                                        "product_formset_storefront_ui_name":"About",
                                        "product_formset_group_id":1147,
                                        "product_formset_storefront_ui_position":"TAB",
                                        "product_formsetid":2,
                                        "product_formset_type":"BASIC PRODUCT INFO",
                                        "product_formset_scope":"To All",
                                        "product_formset_status_id":1
                                     },
                                     {
                                        "product_formset_belonging_name":"What you get",
                                        "product_formset_context":"Product",
                                        "product_form_details":[
                                           {
                                              "product_form_id":1,
                                              "product_form_storefront_ui_name":"Title",
                                              "product_form_type":"BASIC PRODUCT INFO",
                                              "product_form_status":"Active",
                                              "product_form_storefront_ui_position":"NORMAL",
                                              "product_form_scope":"To All",
                                              "product_form_name":"Default",
                                              "product_form_context":"Product",
                                              "product_form_status_id":1,
                                              "product_form_attributes":[
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"description",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"<p>seafood</p>",
                                                    "attribute_storefront_ui_representation_type":"Description",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1132,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"What_is_in_your_box",
                                                    "attribute_ui_type":"Rich-text",
                                                    "attribute_value":"<p>seafood</p>",
                                                    "is_attribute_split_search_enabled":false
                                                 }
                                              ]
                                           }
                                        ],
                                        "product_formset_status":"ACTIVE",
                                        "is_multi_instance_formset":false,
                                        "product_formsetname":"What you get",
                                        "product_formset_storefront_ui_name":"What you get",
                                        "product_formset_group_id":1147,
                                        "product_formset_storefront_ui_position":"TAB",
                                        "product_formsetid":5,
                                        "product_formset_type":"BASIC PRODUCT INFO",
                                        "product_formset_scope":"To All",
                                        "product_formset_status_id":1
                                     },
                                     {
                                        "product_formset_belonging_name":"Sourcing",
                                        "product_formset_context":"Product",
                                        "product_form_details":[
                                           {
                                              "product_form_id":1,
                                              "product_form_storefront_ui_name":"Title",
                                              "product_form_type":"BASIC PRODUCT INFO",
                                              "product_form_status":"Active",
                                              "product_form_storefront_ui_position":"NORMAL",
                                              "product_form_scope":"To All",
                                              "product_form_name":"Default",
                                              "product_form_context":"Product",
                                              "product_form_status_id":1,
                                              "product_form_attributes":[
                                                 {
                                                    "is_implicit_attribute":false,
                                                    "attribute_type":"description",
                                                    "attribute_split_search_value":"",
                                                    "attribute_storefront_ui_position":"TAB",
                                                    "is_attribute_sensitive":false,
                                                    "attribute_description":"<p>from sea</p>",
                                                    "attribute_storefront_ui_representation_type":"Description",
                                                    "is_attribute_mandatory":true,
                                                    "attribute_id":1133,
                                                    "does_attribute_add_uniqueness":false,
                                                    "attribute_name":"Sourcing",
                                                    "attribute_ui_type":"Rich-text",
                                                    "attribute_value":"<p>from sea</p>",
                                                    "is_attribute_split_search_enabled":false
                                                 }
                                              ]
                                           }
                                        ],
                                        "product_formset_status":"ACTIVE",
                                        "is_multi_instance_formset":false,
                                        "product_formsetname":"Sourcing",
                                        "product_formset_storefront_ui_name":"Sourcing",
                                        "product_formset_group_id":1147,
                                        "product_formset_storefront_ui_position":"TAB",
                                        "product_formsetid":4,
                                        "product_formset_type":"BASIC PRODUCT INFO",
                                        "product_formset_scope":"To All",
                                        "product_formset_status_id":1
                                     }
                                  ],
                                  "product_group_id":1147,
                                  "region_restricted_codes":[

                                  ],
                                  "product_attribute_values":[
                                     {
                                        "attr_name":"Short Description",
                                        "ui_position":"NORMAL",
                                        "attr_type":"text",
                                        "attr_value":"direct from sea",
                                        "attr_id":1121
                                     },
                                     {
                                        "attr_name":"Price",
                                        "ui_position":"TAB",
                                        "attr_type":"price",
                                        "attr_value":"700",
                                        "attr_id":1122
                                     },
                                     {
                                        "attr_name":"On_Offer",
                                        "ui_position":"TAB",
                                        "attr_type":"on_offer",
                                        "attr_value":"on",
                                        "attr_id":1123
                                     },
                                     {
                                        "attr_name":"Offer_Name",
                                        "ui_position":"TAB",
                                        "attr_type":"offer_name",
                                        "attr_value":"June offer",
                                        "attr_id":1124
                                     },
                                     {
                                        "attr_name":"Offer_Price",
                                        "ui_position":"TAB",
                                        "attr_type":"offer_price",
                                        "attr_value":"630.0",
                                        "attr_id":1125
                                     },
                                     {
                                        "attr_name":"Offer_Discount",
                                        "ui_position":"TAB",
                                        "attr_type":"offer_discount",
                                        "attr_value":"10",
                                        "attr_id":1126
                                     },
                                     {
                                        "attr_name":"Offer_Start_Date",
                                        "ui_position":"TAB",
                                        "attr_type":"offer_start_date",
                                        "attr_value":"01-06-2021",
                                        "attr_id":1127
                                     },
                                     {
                                        "attr_name":"Offer_End_Date",
                                        "ui_position":"TAB",
                                        "attr_type":"offer_end_date",
                                        "attr_value":"30-06-2021",
                                        "attr_id":1128
                                     },
                                     {
                                        "attr_name":"Net Weight",
                                        "ui_position":"TAB",
                                        "attr_type":"valued_enum",
                                        "attr_value":"2 Kg",
                                        "attr_id":1129
                                     },
                                     {
                                        "attr_name":"Type",
                                        "ui_position":"TAB",
                                        "attr_type":"valued_enum",
                                        "attr_value":"Curry Cut",
                                        "attr_id":1130
                                     },
                                     {
                                        "attr_name":"About",
                                        "ui_position":"TAB-DEFAULT",
                                        "attr_type":"description",
                                        "attr_value":"<p>fresh sea food</p>",
                                        "attr_id":1131
                                     },
                                     {
                                        "attr_name":"What_is_in_your_box",
                                        "ui_position":"TAB",
                                        "attr_type":"description",
                                        "attr_value":"<p>seafood</p>",
                                        "attr_id":1132
                                     },
                                     {
                                        "attr_name":"Sourcing",
                                        "ui_position":"TAB",
                                        "attr_type":"description",
                                        "attr_value":"<p>from sea</p>",
                                        "attr_id":1133
                                     },
                                     {
                                        "attr_name":"Profile Image",
                                        "ui_position":"NORMAL-LEFT",
                                        "attr_type":"display_image",
                                        "attr_value":""image_filelocation/image_name2.jpg,image_filelocation/image_name3.jpg,image_filelocation/image_name4.jpg,image_filelocation/image_name5.jpeg",
                                        "attr_id":1134
                                     },
                                     {
                                        "attr_name":"List Image",
                                        "ui_position":"NORMAL",
                                        "attr_type":"display_image",
                                        "attr_value":"image_filelocation/image_name5.jpeg",
                                        "attr_id":1135
                                     },
                                     {
                                        "attr_name":"Stock Quantity",
                                        "ui_position":"NORMAL",
                                        "attr_type":"stock_quantity",
                                        "attr_value":"11",
                                        "attr_id":1136
                                     },
                                     {
                                        "attr_name":"Apply Delivery Charge",
                                        "ui_position":"NORMAL",
                                        "attr_type":"delivery_charge",
                                        "attr_value":null,
                                        "attr_id":1137
                                     },
                                     {
                                        "attr_name":"Is Slashable",
                                        "ui_position":"NORMAL",
                                        "attr_type":"slashable",
                                        "attr_value":null,
                                        "attr_id":1138
                                     },
                                     {
                                        "attr_name":"Is Fixed Price",
                                        "ui_position":"NORMAL",
                                        "attr_type":"fixed_price",
                                        "attr_value":null,
                                        "attr_id":1139
                                     },
                                     {
                                        "attr_name":"Charges",
                                        "ui_position":"NORMAL",
                                        "attr_type":"charges",
                                        "attr_value":"0",
                                        "attr_id":1140
                                     },
                                     {
                                        "attr_name":"Is Watchable",
                                        "ui_position":"NORMAL",
                                        "attr_type":"is_watchable",
                                        "attr_value":null,
                                        "attr_id":1141
                                     },
                                     {
                                        "attr_name":"Watchable Content",
                                        "ui_position":"NORMAL",
                                        "attr_type":"watchable_content",
                                        "attr_value":"",
                                        "attr_id":1142
                                     },
                                     {
                                        "attr_name":"Is a Game",
                                        "ui_position":"NORMAL",
                                        "attr_type":"is_a_game",
                                        "attr_value":null,
                                        "attr_id":1143
                                     },
                                     {
                                        "attr_name":"Game URL",
                                        "ui_position":"NORMAL",
                                        "attr_type":"game_url",
                                        "attr_value":"",
                                        "attr_id":1144
                                     },
                                     {
                                        "attr_name":"Is Region Restricted",
                                        "ui_position":"NORMAL",
                                        "attr_type":"is_region_restricted",
                                        "attr_value":null,
                                        "attr_id":1145
                                     }
                                  ],
                                  "product_belonging_name":"fresh carps 2kg",
                                  "per_publishing_form":[

                                  ],
                                  "firstpublishedon":"01/06/2021",
                                  "is_region_restricted":false
                               }
                            ]
                         },
                         "publisher_name":"Fisheries Vendor",
                         "publisher_type":3,
                         "publisher_id":11,
                         "publisher_rating":5.0,
                         "num_users_rated":1
                      }
                   ]
                }
             }
          ]
       }
    }
 ],
 "regex_details":[

 ]
 }
}

3.1.9.5. Fetch Packaged products

This API fetches the individual products in the package (and their details) for any product id that is passed as argument. Using this API vendors can package a set of products and offer that as a single purchasable product.

POST   get_packaged_products

Resource URI

<base URL>/product2/api/get_packaged_products

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
store_id integer yes id of the store. Store_id is dependend on create store. Use Store Save api to get the store id

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400,401

Error Scenarios

Error Code Error Message Error Reason
400 authentication token required authentication token is not entered
401 invalid customer invalid login credentials are entered

Example Request

<base URL>/product2/api/get_packaged_products

Example Body

{
   "store_id":"1",
   "product_id":2
}

Example Response

{
   "facet_info":[

   ],
   "search_result":[
      {
         "category_id":8,
         "product_per_category":{
            "count":1,
            "product_ids":[
               2
            ],
            "publisher_ids":[
               "13"
            ],
            "product_details":[
               {
                  "product_id":2,
                  "product_details":{
                     "product_name":"Seafood combo 1",
                     "product_id":2,
                     "storeid":1,
                     "product_data":{
                        "2":[
                           "image_filelocation/image_name.jpg"
                        ],
                        "attribute_data":{
                           "Product Image":{
                              "display_image":[
                                 "image_filelocation/image_name.jpg"
                              ]
                           }
                        },
                        "meta_data":[
                           {
                              "attr_name":"product_id",
                              "attr_type":"product_id",
                              "attr_value":[
                                 "2"
                              ]
                           },
                           {
                              "attr_name":"product_name",
                              "attr_type":"product_name",
                              "attr_value":"Seafood combo 1"
                           },
                           {
                              "attr_name":"Product Image",
                              "attr_type":"display_image",
                              "attr_value":[
                                 "image_filelocation/image_name.jpg"
                              ]
                           }
                        ]
                     },
                     "product_type":"5",
                     "product_rating":3.0,
                     "num_users_rated":1,
                     "bookable_enum_attribute_values":[

                     ],
                     "form":[

                     ]
                  },
                  "publisher_per_product":{
                     "count":1,
                     "publsiher_details":[
                        {
                           "publishings_per_publisher":{
                              "count":1,
                              "publishings_per_publisher_details":[
                                 {
                                    "per_publishing_product_attribute_values":[
                                       {
                                          "product_formset_belonging_name":"Default",
                                          "product_formset_context":"Product",
                                          "product_form_details":[
                                             {
                                                "product_form_id":1,
                                                "product_form_storefront_ui_name":"Title",
                                                "product_form_type":"BASIC PRODUCT INFO",
                                                "product_form_status":"Active",
                                                "product_form_storefront_ui_position":"NORMAL",
                                                "product_form_scope":"To All",
                                                "product_form_name":"Default",
                                                "product_form_context":"Product",
                                                "product_form_status_id":1,
                                                "product_form_attributes":[
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"text",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"Seafood combo 1",
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":51,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Short Description",
                                                      "attribute_ui_type":"Text",
                                                      "attribute_value":"Seafood combo 1",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"price",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"789",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":52,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Price",
                                                      "attribute_ui_type":"Price",
                                                      "attribute_value":"789",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"on_offer",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":null,
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":53,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"On_Offer",
                                                      "attribute_ui_type":"On_Offer",
                                                      "attribute_value":null,
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"offer_name",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"Currently not on offer",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":54,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Offer_Name",
                                                      "attribute_ui_type":"Offer_Name",
                                                      "attribute_value":"Currently not on offer",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"offer_price",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"789",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":55,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Offer_Price",
                                                      "attribute_ui_type":"Offer_Price",
                                                      "attribute_value":"789",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"offer_discount",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"0",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":56,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Offer_Discount",
                                                      "attribute_ui_type":"Offer_Discount",
                                                      "attribute_value":"0",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"offer_start_date",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":57,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Offer_Start_Date",
                                                      "attribute_ui_type":"Offer_Start_Date",
                                                      "attribute_value":"",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"offer_end_date",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"TAB",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"",
                                                      "attribute_storefront_ui_representation_type":"Price",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":58,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Offer_End_Date",
                                                      "attribute_ui_type":"Offer_End_Date",
                                                      "attribute_value":"",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"stock_quantity",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"67",
                                                      "attribute_storefront_ui_representation_type":"Inline-Text",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":59,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Stock Quantity",
                                                      "attribute_ui_type":"Stock_quantity",
                                                      "attribute_value":"67",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"delivery_charge",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":null,
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":60,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Apply Delivery Charge",
                                                      "attribute_ui_type":"Delivery_Charge",
                                                      "attribute_value":null,
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"slashable",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":null,
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":61,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Is Slashable",
                                                      "attribute_ui_type":"Slashable",
                                                      "attribute_value":null,
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"fixed_price",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":null,
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":62,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Is Fixed Price",
                                                      "attribute_ui_type":"Fixed_Price",
                                                      "attribute_value":null,
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"charges",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":"0",
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":63,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Charges",
                                                      "attribute_ui_type":"Charges",
                                                      "attribute_value":"0",
                                                      "is_attribute_split_search_enabled":false
                                                   },
                                                   {
                                                      "is_implicit_attribute":false,
                                                      "attribute_type":"is_region_restricted",
                                                      "attribute_split_search_value":"",
                                                      "attribute_storefront_ui_position":"NORMAL",
                                                      "is_attribute_sensitive":false,
                                                      "attribute_description":null,
                                                      "attribute_storefront_ui_representation_type":"Title",
                                                      "is_attribute_mandatory":true,
                                                      "attribute_id":64,
                                                      "does_attribute_add_uniqueness":false,
                                                      "attribute_name":"Is Region Restricted",
                                                      "attribute_ui_type":"Is_Region_restricted",
                                                      "attribute_value":null,
                                                      "is_attribute_split_search_enabled":false
                                                   }
                                                ]
                                             }
                                          ],
                                          "product_formset_status":"ACTIVE",
                                          "is_multi_instance_formset":false,
                                          "product_formsetname":"Default",
                                          "product_formset_storefront_ui_name":"Default",
                                          "product_formset_group_id":12,
                                          "product_formset_storefront_ui_position":"NORMAL",
                                          "product_formsetid":1,
                                          "product_formset_type":"BASIC PRODUCT INFO",
                                          "product_formset_scope":"To All",
                                          "product_formset_status_id":1
                                       }
                                    ],
                                    "product_group_id":12,
                                    "region_restricted_codes":[

                                    ],
                                    "product_attribute_values":[
                                       {
                                          "attr_name":"Short Description",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"text",
                                          "required":true,
                                          "attr_value":"Seafood combo 1",
                                          "attr_id":27
                                       },
                                       {
                                          "attr_name":"Price",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"price",
                                          "required":true,
                                          "attr_value":"789",
                                          "attr_id":28
                                       },
                                       {
                                          "attr_name":"On_Offer",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"on_offer",
                                          "required":true,
                                          "attr_value":null,
                                          "attr_id":29
                                       },
                                       {
                                          "attr_name":"Offer_Name",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"offer_name",
                                          "required":true,
                                          "attr_value":"Currently not on offer",
                                          "attr_id":30
                                       },
                                       {
                                          "attr_name":"Offer_Price",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"offer_price",
                                          "required":true,
                                          "attr_value":"789",
                                          "attr_id":31
                                       },
                                       {
                                          "attr_name":"Offer_Discount",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"offer_discount",
                                          "required":true,
                                          "attr_value":"0",
                                          "attr_id":32
                                       },
                                       {
                                          "attr_name":"Offer_Start_Date",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"offer_start_date",
                                          "required":true,
                                          "attr_value":"",
                                          "attr_id":33
                                       },
                                       {
                                          "attr_name":"Offer_End_Date",
                                          "per_publishing":false,
                                          "ui_position":"TAB",
                                          "attr_type":"offer_end_date",
                                          "required":true,
                                          "attr_value":"",
                                          "attr_id":34
                                       },
                                       {
                                          "attr_name":"Stock Quantity",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"stock_quantity",
                                          "required":true,
                                          "attr_value":"67",
                                          "attr_id":35
                                       },
                                       {
                                          "attr_name":"Apply Delivery Charge",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"delivery_charge",
                                          "required":true,
                                          "attr_value":null,
                                          "attr_id":37
                                       },
                                       {
                                          "attr_name":"Is Slashable",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"slashable",
                                          "required":true,
                                          "attr_value":null,
                                          "attr_id":38
                                       },
                                       {
                                          "attr_name":"Is Fixed Price",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"fixed_price",
                                          "required":true,
                                          "attr_value":null,
                                          "attr_id":39
                                       },
                                       {
                                          "attr_name":"Charges",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"charges",
                                          "required":true,
                                          "attr_value":"0",
                                          "attr_id":40
                                       },
                                       {
                                          "attr_name":"Is Region Restricted",
                                          "per_publishing":false,
                                          "ui_position":"NORMAL",
                                          "attr_type":"is_region_restricted",
                                          "required":true,
                                          "attr_value":null,
                                          "attr_id":41
                                       }
                                    ],
                                    "product_belonging_name":"Seafood combo 1",
                                    "per_publishing_form":[

                                    ],
                                    "firstpublishedon":"02/11/2020",
                                    "is_region_restricted":false
                                 }
                              ]
                           },
                           "publisher_name":"THBS",
                           "publisher_type":3,
                           "publisher_id":1,
                           "publisher_rating":5.0,
                           "num_users_rated":1
                        }
                     ]
                  }
               }
            ]
         }
      }
   ],
   "regex_details":[

   ],
   "packaged_product_price_info":[
      {
         "3":{
            "price":"98",
            "discount_percentage":"25",
            "discounted_price":"73.5"
         }
      }
   ]
}

3.1.9.6. Store Save

This API is used to save the store in DigitMarket™ platform.

POST   store_save

Note

A store turns active only if a store owner is associated with it
Only DM users can consume this API and create a store, hence a valid DM market user id is mandatory

Resource URI

<base URL>/store2/api/store_save

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
id integer no displays the id
store _name string yes the name of the store. Max. length is 128 and min. length is 1
resource_json string yes displays the resource json
storeType array of string no user can select the store type the available options are 1,2,0,4,5
store_status array of string no the status of the store the available options are 1,2,3
createdDate string no displays the date and time of the store created
lastupdated string no displays the last updated date and time of the store
ratings numberr no displays the ratings of the store
nums_users_rated integer no displays the number of users rated the store with a max of 2147483647 and min of -2147483648
onboard boolean no displays the onboard
onboard_status string no displays the onboard status with the max length of 254
tos string no rich text
policy string no displays the policy
is_merged boolean no is merged
trg_journey_status string no displays the traget of the journey store created
trg_journey_id string no displays the target journey id with the max length 20
store_url string no displays the store url with max. length 254
analytics_view boolean no  
analytics_url stringn no analytics url with max. length 254
onboard_process array of string no displays the onboard process with the values 1,2
application_id string no displays the application id with the max. length of 254
store_delivery_slotes string no displays the delivery slots of the store
store_type_ref integer no  
createdBy integer no  
usere_type integer no  

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/store2/api/store_save

Example Body

{
 "store_name":"TestStore",
 "createdBy":1
}

  **Example Response**
{
 "id":51,
 "store_name":"manasastore123",
 "resource_json":{

 },
 "storeType":"2",
 "store_status":"2",
 "createdDate":"2021-09-09T05:50:40.559804Z",
 "lastUpdated":"2021-09-09T05:50:40.559838Z",
 "ratings":5,
 "num_users_rated":1,
 "onboard":false,
 "onboard_status":null,
 "tos":null,
 "policy":null,
 "is_merged":false,
 "trg_journey_status":null,
 "trg_journey_id":null,
 "store_url":null,
 "analytics_view":false,
 "analytics_url":null,
 "onboard_process":"1",
 "applicant_id":null,
 "store_delivery_slots":{

 },
 "store_type_ref":null,
 "createdBy":1,
 "user_type":null
}

3.1.9.7. Create Category

This API is used to create create category.

POST   create category

Resource URI

<base URL>/category2/api/create_category

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
category_name string yes displays the name of the category with the max. length of 50 and min. length is 3
parent_category integer no displays the name of the parent category
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store using the api: /store2/api/store_save
store_admin integer no displays ther name Use register api to get customer id
category_type string no display the type of the category with the min.length of 1
source string no name of the source with the min. length of 1
category_attributes array of sting no displays all the category attributes

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>category2/api/create_category

Example Body

{
 "category_name":"Kitchen",
 "store_id":1,
 "parent_category":1,
 "category_attributes":[
    {
       "attribute_name":"Category Image",
       "mandatory":true,
       "attribute_ui_type":"image-upload",
       "ui_position":"TAB",
       "inherited":true
    },
    {
       "attribute_name":"Short Description",
       "mandatory":true,
       "attribute_ui_type":"Rich-Text",
       "ui_position":"TAB",
       "ui_representation":"Description",
       "inherited":true
    }
 ]
}

**Example Response**
{
 "status":true,
 "message":"Category and Category attribute created successfully",
 "data":{
    "id":261,
    "category_name":"Kitchen",
    "category_attributes":{
       "inherited":[

       ],
       "self_attributes":[
          {
             "attribute_id":681,
             "attribute_name":"Short Description",
             "mandatory":true,
             "attribute_ui_type":"Rich-text",
             "attribute_options":[

             ]
          }
       ]
    }
 }
}

3.1.9.8. Create Product

This API is used to create create product.

POST   create product

Resource URI*

<base URL>/product2​/api​/v2​/create_product

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
name string yes displays the name of the product with the max. length of 50 and min. length is 3
product_category integer yes displays the name of the product category
priceplan_category integer yes displays the name of the price paln
store_id integer yes id of the store to which the customer is to be added. Store_id is dependend on create store using the api: /store2/api/store_save
product_type string yes display the type of the product with the max. length of 2 and min.length of 1
product_rating integer no display the ratings of the product
num_users_rated integer no display the number of users rated
scope_type string no display the type of the scope with the the max. length of 2 and min.length of 1
product_attributes array of sting no displays all the product attributes

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/product2​/api​/v2​/create_product

Example Body

{
 "name":"Battery 2",
 "product_category":1,
 "priceplan_category":6,
 "store_id":1,
 "product_type":1,
 "product_attributes":[
    {
       "attribute_name":"Description",
       "attribute_ui_type":"Text",
       "mandatory":true
    }
 ]
}

**Example Response**
{
 "status":true,
 "message":"Product and Product attribute created successfully",
 "data":{
    "id":72,
    "product_name":"Battery 2",
    "product_attributes":[
       {
          "attribute_id":1585,
          "attribute_name":"Price",
          "mandatory":false
       },
       {
          "attribute_id":1586,
          "attribute_name":"On_Offer",
          "mandatory":false
       },
       {
          "attribute_id":1587,
          "attribute_name":"Offer_Name",
          "mandatory":false
       },
       {
          "attribute_id":1588,
          "attribute_name":"Offer_Price",
          "mandatory":false
       },
       {
          "attribute_id":1589,
          "attribute_name":"Offer_Discount",
          "mandatory":false
       },
       {
          "attribute_id":1590,
          "attribute_name":"Offer_Start_Date",
          "mandatory":false
       },
       {
          "attribute_id":1591,
          "attribute_name":"Offer_End_Date",
          "mandatory":false
       },
       {
          "attribute_id":1592,
          "attribute_name":"Description",
          "mandatory":true
       }
    ]
 }
}

3.1.10. Coupon APIs

These sets of APIs help to define a new coupon, coupon rule and associate an existing discount code to a coupon offer name.

3.1.10.1. Coupon Rule

This API is used for creating coupons by applying some logic.

GET   dmcouponrule

Resource URI

<base URL>/dmcoupons/dmcouponrule

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication NO

Resource Properties

No parameters are required to be passed.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcouponrule

Example Response

{
   "count":5,
   "next":null,
   "previous":null,
   "results":[
      {
         "id":1,
         "rule_name":"Order amount more than 500",
         "validating_module":"Order",
         "validating_field":"mrp",
         "validator":">=",
         "validating_target":"500",
         "validating_target_type":"FloatField",
         "rule":"Order.mrp >= 500",
         "allow":true,
         "rule_error":"order amount less than 500"
      },
      {
         "id":2,
         "rule_name":"order status in ORDER PLACED, CREATED, PAID",
         "validating_module":"Order",
         "validating_field":"status",
         "validator":"in",
         "validating_target":"Order Placed,created,paid",
         "validating_target_type":"CharField",
         "rule":"Order.status in Order Placed,created,paid",
         "allow":true,
         "rule_error":"order status must be in ORDER PLACED, CREATED, PAID"
      },
      {
         "id":3,
         "rule_name":"Order Amount  less than 500",
         "validating_module":"Order",
         "validating_field":"mrp",
         "validator":"<=",
         "validating_target":"500",
         "validating_target_type":"FloatField",
         "rule":"Order.mrp <= 500",
         "allow":true,
         "rule_error":"order amount must be less than 500"
      },
      {
         "id":4,
         "rule_name":"order line item quantity at least 3",
         "validating_module":"OrderLineItem",
         "validating_field":"quantity",
         "validator":">=",
         "validating_target":"3",
         "validating_target_type":"FloatField",
         "rule":"OrderLineItem.quantity >= 3",
         "allow":true,
         "rule_error":"quantity must be 3 or more"
      },
      {
         "id":5,
         "rule_name":"Order belonging Name \"Country\"",
         "validating_module":"OrderLineItem",
         "validating_field":"product_belonging_name",
         "validator":"in",
         "validating_target":"Country",
         "validating_target_type":"CharField",
         "rule":"OrderLineItem.product_belonging_name in Country",
         "allow":true,
         "rule_error":"Order belonging Name must be \"Country\""
      }
   ]
}

Resource URI

<base URL>/dmcoupons/dmcouponrule

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
id integer no id of the coupon
rule_name string yes name of the rule max length is 55 min. length is 1
validating_module string no validation of the rule max length is 555. This is an optional field
validating_field string no field for validating max length is 555. This is an optional field
validator string no validating operators used in the rule like: ==, !=, >, <, >=, <=, in, not in, is, not is, datebetween, timebetween
validating_target string no target field of the validator
validating_target_type string no target type of the validator max length is 555. This is an optional field
rule string no rule defining for the coupon max length is 5555. This is an optional field
allow boolean no  
rule_error string no error message of the rule max length: 555. This is an optional field

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcouponrule

Example Body

{
   "rule_name": "Rule1",
   "validating_module": "Order Amount",
   "validating_field": "mrp",
   "validator": "==",
   "validating_target": "100",
   "validating_target_type": "FloatField",
   "rule": "MRP == 100",
   "allow": true,
   "rule_error": "MRP is not Rs 100"
}

Example Response

{
   "id":14,
   "rule_name":"Rule1",
   "validating_module":"Order Amount",
   "validating_field":"mrp",
   "validator":"==",
   "validating_target":"100",
   "validating_target_type":"FloatField",
   "rule":"MRP == 100",
   "allow":true,
   "rule_error":"MRP is not Rs 100"
}

3.1.10.2. Coupon Offer

This API is used to provide a coupon offer.

GET   dmcouponoffer

Resource URI

<base URL>/dmcoupons/dmcouponoffer

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication No

Resource Properties

No parameters are required to be passed.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcouponoffer

Example Response

{
   "count":8,
   "next":null,
   "previous":null,
   "results":[
      {
         "id":1,
         "offer_name":"TestOffer1",
         "coupon_offer":"20.00",
         "coupen_offer_percentage":false,
         "coupon_rule_or":[
            1
         ],
         "coupon_rule_and":[
            1
         ]
      }
   ]
}

POST   dmcouponoffer

Resource URI

<base URL>/dmcoupons/dmcouponoffer

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
id integer no id of the coupon
offer_name string yes name of the offer max length is 55 min. length is 1
coupon_offer integer yes the name of the coupon offer
coupon_offer_percentage boolean no offer amount in price/percentage
coupon_rule_or integer no array of rules/rule id with OR logic
coupon_rule_and integer no array of rules/rule id with AND logic

Note

Users must get rule id from dmcouponrule api

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcouponoffer

Example Body

{
  "offer_name": "TestOffer12",
  "coupon_offer": "20",
  "coupen_offer_percentage": true,
  "coupon_rule_or": [1],
  "coupon_rule_and": [1]
}

Example Response

{
   "id":8,
   "offer_name":"TestOffer12",
   "coupon_offer":"20.00",
   "coupen_offer_percentage":true,
   "coupon_rule_or":[
      1
   ],
   "coupon_rule_and":[
      1
   ]
}

3.1.10.3. Coupon

This API is used for creating coupon.

GET   dmcoupon

Resource URI

<base URL>/dmcoupons/dmcoupon

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication No

Resource Properties

No parameters are required to be passed.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcoupon

Example Response

{
   "count":8,
   "next":null,
   "previous":null,
   "results":[
      {
         "id":1,
         "offer_name":"TestOffer1",
         "coupon_offer":"20.00",
         "coupen_offer_percentage":false,
         "coupon_rule_or":[
            1
         ],
         "coupon_rule_and":[
            1
         ]
      },
      {
         "id":2,
         "offer_name":"TestOffer2",
         "coupon_offer":"2000.00",
         "coupen_offer_percentage":false,
         "coupon_rule_or":[
            1
         ],
         "coupon_rule_and":[

         ]
      }
   ]
}

POST   dmcoupon

Resource URI

<base URL>/dmcoupons/dmcoupon

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
id integer no id of the coupon
coupon_ticket string yes name for the coupon ticket max length is 55 min. length is 1
coupon_offer integer no array of the offers/offers id
coupon_store integer no store id
coupon_vendor integer no vendor id
starts_on string yes the offer start date it must be in the format of Date(yyyy-mm-dd)
expires_on string yes the offer end date it must be in the format of Date(yyyy-mm-dd)

Note

User must get the value of get offer id from Coupon Offer api.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/dmcoupon

Example Body

{
 "id":6,
 "coupon_ticket":"ABC21",
 "coupon_offer":[
    1
 ],
 "coupon_store":null,
 "coupon_vendor":null,
 "starts_on":"2021-07-12",
 "expire_on":"2021-07-12"
}

Example Response

{
 "id":6,
 "coupon_ticket":"ABC21",
 "coupon_offer":[
    1
 ],
 "coupon_store":null,
 "coupon_vendor":null,
 "starts_on":"2021-07-12",
 "expire_on":"2021-07-12"
}

3.1.10.4. Consume Coupon

POST   consumecoupon

Resource URI

<base URL> /dmcoupons/consumecoupon

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
coupon_ticket string no name of the coupon ticket max length is 200 min. length is 1
offer_name string no name of the offer max length is 200 min. length is 1
order_amount string no the amount of the order This is an optional field

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/consumecoupon

Note

It is required to pass the auth_token in Authorization header.

Example Body

{
 "message":"Success",
 "order_amount":300.0,
 "offer_price":"27.00%",
 "after_discount":219.0,
 "Description":"Coupon Successfully applied"
}

Example Response

{
 "message":"Success",
 "order_amount":300.0,
 "offer_price":"27.00%",
 "after_discount":219.0,
 "Description":"Coupon Successfully applied"
}

3.1.10.5. Validate Coupon

POST   validatecoupon

Resource URI

<base URL> /dmcoupons/validatecoupon

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
coupon_ticket string yes name of the coupon ticket max length is 200 min. length is 1
order_amount string no amount of the order. This is an optional field
product_id string no id of the product max length is 200 min. length is 1
order_status string no status of the order max length is 200 min. length is 1
order_quantity string no quantity of the order max length is 200 min. length is 1
product _belonging_name string no product owner name max length is 200 min. length is 1
product_group_id string no id of the product group max length is 200 min. length is 1

Note

It is required to pass the auth_token in Authorization header.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/dmcoupons/validatecoupon

Example Body

{
 "coupon_ticket":"APU21",
 "order_amount":"355",
 "product_id":"",
 "order_status":"",
 "order_quantity":"",
 "product_belonging_name":"",
 "product_group_id":""
}

Example Response

{
   "coupon_available":true,
   "available_offers":[
      {
         "offer_name":"BIGBSALE",
         "offer_type":2,
         "offer_percentage":"27.00%",
         "offer_amount":95.85
      }
   ],
   "message":"successfully retrieve the offers avaible for coupon"
}

3.1.11. Journey APIs

3.1.11.1. Track Package

This API is used for tracking the items.

GET   track_package

Resource URI

<base URL> /order/api/track_package?order_line_item_id={id}

Resource Information

Method GET
Accepted Response formats JSON
Requires Authentication No

Resource Properties

No parameters are required to be passed.

Error Codes

4XX, 5XX

Error Scenarios

Error Code Error Message Error Reason
4XX or 5XX failure Bad Request/Internal server error

Example Request

<base URL>/order/api/track_package?order_line_item_id={id}

Example Response

[
   {
      "flow_id":1424,
      "module_name":"Order Placed",
      "module_type":"Manual",
      "start_time":"2021-07-15 08:16",
      "completion_time":"2021-07-15 08:16",
      "is_triggered":true,
      "is_completed":false,
      "is_cancellable":false,
      "vendor_notes":null,
      "customer_notes":null
   },
   {
      "flow_id":1425,
      "module_name":"Order InTransit",
      "module_type":"Manual",
      "start_time":"2021-07-15 08:16",
      "completion_time":"2021-07-15 08:16",
      "is_triggered":false,
      "is_completed":false,
      "is_cancellable":false,
      "vendor_notes":null,
      "customer_notes":null
   },
   {
      "flow_id":1426,
      "module_name":"Order Complete",
      "module_type":"Manual",
      "start_time":"2021-07-15 08:16",
      "completion_time":"2021-07-15 08:16",
      "is_triggered":false,
      "is_completed":false,
      "is_cancellable":false,
      "vendor_notes":null,
      "customer_notes":null
   }
]

3.1.11.2. Call Back

POST   call_back

Resource URI

<base URL>/modules/call_back

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication N0

Resource Properties

Parameter Data Type Mandatory Description
journey_id integer no product journey id
journey_type string yes product journey type
journey_group_id integer yes product journey group id
order_line_item_id integer yes id of the order
key string no if value is ‘initial’ considered as stage1

Error Codes

4XX, 5XX

Error Scenarios

Error Code Error Message Error Reason
4XX or 5XX Failure Bad Request/Internal server error

Example Request

<base URL>/modules/call_back

Note

Required parameters value can be taken from List customer order API.

- journey_group_id
- order_line_item_id: from ‘line_item_id’

Predefined values

- journey_type :-
  • order
  • onboard
  • store
  • vendor

Example Body

{
   "journey_id":"122",
   "journey_type":"order",
   "journey_group_id":"1-11-47-1625045560",
   "order_line_item_id":803
}

Example Response

{
   "message":"Order Journey completed successfully"
}

3.1.11.3. Order Journey Call Back

POST   order_journey_call_back_hook

Resource URI

<base URL>/modules/order_journey_call_back_hook

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication NO

Resource Properties

Parameter Type Data Type Mandatory Description
order_line_item_id integer yes order id of the product
flow_id integer yes id of the flow
status_code integer yes code associated with the order
response_text string no  
reason string no  
host string no  
sender_info sender_type   yes contains payment/shipment reference details (according to the caller)
  sender_id      
  sender_code      
Identifiers primary _identifier   yes payment/Shipment related information
  trans_ref      
Eta   no expected time of arrival
vendor_notes   no information written by vendor
customer_notes   no information written by customers

Note

order_line_item_id has be taken from list_customer_orders API. Click here to see the details.
flow_id has be taken from track_package. Click here to see the details.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/modules/order_journey_call_back_hook

Example Body

{
   "order_line_item_id":"804",
   "flow_id":"1464",
   "status_code":"200",
   "response_text":"{'success': 'success'}",
   "reason":"ok",
   "host":"https://xx.yy.com/modules/order_journey_call_back_hook",
   "sender_info":{
      "sender_type":"Payment",
      "sender_id":"AX123",
      "sender_code":""
   },
   "identifiers":{
      "primary_identifier":"AAAABBBCCC",
      "trans_ref":"123"
   },
   "eta":{
      "eta_days":7,
      "eta_hours":0,
      "eta_minutes":10
   },
   "vendor_notes":"Can be processed",
   "customer_notes":"Thank you"
}

Example Response

{
   "message":"Journey stopped at mannual phase except response to call_back api to continue further"
}
"OR"
{
   "message":"Journey continued"
}
}

PUT   order_journey_call_back_hook

Resource URI

<base URL>/modules/order_journey_call_back_hook

Resource Information

Method PUT
Accepted Response formats JSON
Requires Authentication NO

Resource Properties

Parameter Type Data Type Mandatory Description
order_line_item_id integer yes order id of the product
flow_id integer yes id of the flow
status_code integer yes code associated with the order
response_text string no  
reason string no  
host string no  
sender_info sender_type   yes contains payment/shipment reference details (according to the caller)
  sender_id      
  sender_code      
Identifiers primary _identifier   yes payment/Shipment related information
  trans_ref      
Eta   no expected time of arrival
vendor_notes   no information written by vendor
customer_notes   no information written by customers

Note

order_line_item_id has be taken from <base URL>/customer2/list_customer_orders API. Click here to see the details.
flow_id has be taken from <base URL>/order/api/track_package?order_line_item_id={id}. Click here to see the details.

Error Codes

400, 500

Error Scenarios

Error Code Error Message Error Reason
400 Bad Request Bad syntax or Validation error
500 Internal server error Failing from client serverside

Example Request

<base URL>/modules/order_journey_call_back_hook

Example Body

{
   "order_line_item_id":"805",
   "flow_id":"1469",
   "status_code":"200",
   "response_text":"{'success': 'success response'}",
   "reason":"ok",
   "host":"https://xx.yy.com/modules/order_journey_call_back_hook",
   "sender_info":{
      "sender_type":"Payment",
      "sender_id":"AX123",
      "sender_code":""
   },
   "identifiers":{
      "primary_identifier":"AAAABBBCCC",
      "trans_ref":"123"
   },
   "eta":{
      "eta_days":7,
      "eta_hours":0,
      "eta_minutes":10
   },
   "vendor_notes":"Can be processed",
   "customer_notes":"Thank you"
}

Example Response

{
    "message": "Flow details updated successfully"
}

3.1.12. Delivery Slot API

3.1.12.1. List Delivery Slots

This API is used to list all delivery slots booked by a customer in the store.

POST   list_delivery_slots

Resource URI

<base URL>/customer2/list_delivery_slots

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
vendor_id integer no id of the vendor. Use Vendor Save api to get the vendor id
store_id integer no id of the store. Store_id is dependend on create store. Use Store Save api to get the store id
date string yes date of the delivery slot

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/customer2/list_delivery_slots

Example Body

{
   "date":"2021-07-21",
   "store_id":"1"
}

Example Response

{
   "message":"Listing Sucessful",
   "2021-07-21":[
      {
         "delivery_appointment_id":319,
         "vendor":"",
         "store_id":1,
         "customer":75,
         "customer_name":"Apu",
         "created_on":"2021-07-15T08:16:22.637761Z",
         "updated_on":"2021-07-15T08:16:22.637792Z",
         "date":"2021-07-21",
         "time":"07:30:00",
         "slot":"07:30 - 08:00",
         "slot_id":null,
         "status":"Awaiting Vendor Response",
         "status_id":"0"
      }
   ]
}

3.1.13. Order API

3.1.13.1. Cancel Orders

POST   cancel_orders

Resource URI

<base URL>/customer2/cancel_orders

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
order_id integer no the id of the order. Use create order api to get the order id
line_item_id integer no the order line item id
flow_id integer no the flow id

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Note

It is required to pass the auth_token in Authorization header.

Example Request

<base URL>/customer2/cancel_orders

Example Body

{
   "order_id":626
}

Example Response

{
   "message":"Cancelled Orders Sucessfully",
   "cancelled":
   {
    "order_id":626
   }
}

3.1.13.2. Check Payment Status

This API is used to check the payment status.

POST   check_payment_status

Resource URI

<base URL> /order​/api​/check_payment_status

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
payment_order_id string no id of the payment order with the min. length is 1
dm_order_id_ref string no reference id of the DM order

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/order​/api​/check_payment_status

Example Body

{
   "payment_order_id":"order_HwvDS0aIFjMAS0",
   "dm_order_id_ref":"3261"
}

Example Response

{
   "current_payment_status":"paid"
}

3.1.13.3. Save Payment Mapping

This API is used to check the payment status.

POST   save_payment_mapping

This API is used to check the payment status.

Resource URI

<base URL>/order/api/save_payment_mapping

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
created_at string yes displays the created date and time
dm_order_id_ref integer no reference id of the DM order
signature string yes displays the string with the min. length of 1
payment_id integer yes id of the payment order with th min. length is 1
payment_status string yes get the payment status order
order integer no displays the order id

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/order/api/save_payment_mapping

Example Body

{
   "dm_order_id_ref":3261,
   "signature":"609b700f50b849b8c1037dc609e6a49e15642ed456395d250d7993bc14caff04",
   "payment_id":"pay_HwvDnDKpHcEYN9",
   "payment_status":"Paid",
   "order":3261
}

Example Response

{
   "id":388,
   "created_at":1631530093,
   "notes":"[]",
   "currency":"INR",
   "signature":"609b700f50b849b8c1037dc609e6a49e15642ed456395d250d7993bc14caff04",
   "dm_order_id_ref":"3261",
   "payment_order_id":"order_HwvDS0aIFjMAS0",
   "payment_id":"pay_HwvDnDKpHcEYN9",
   "payment_status":"Paid",
   "attempts":0,
   "amount":100000,
   "payment_reference_json":{

   },
   "refund_reference_json":{

   },
   "reverse_transfer_reference_json":{

   },
   "order":3261
}

3.1.14. Vendor API

3.1.14.1. Vendor Save

This API is used to save the vendor in digit market platform.

POST   vendor_save

Note

A store turns active only if a store owner is associated with it
Only DM users can consume this API and create a store, hence a valid DM market user id is mandatory

Resource URI

<base URL>vendor2/api/vendor_save

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
id integer no displays the id
vendor_name string yes the name of the vendor. Max. length is 128 and min. length is 1
vendor_status array of string no the status of the vendor the available options are 1,2,3,4
createdDate string no displays the date and time of the vendor created
lastupdated string no displays the last updated date and time of the vendor
ratings numberr no displays the ratings of the vendor
nums_users_rated integer no displays the number of users rated the vendor with a max of 2147483647 and min of -2147483648
onboard boolean no displays the onboard
onboard_status string no displays the onboard status with the max length of 254
tos string no richtext
policy string no displays the policy
trg_journey_status string no displays the traget of the journey vendor created
trg_journey_id string no displays the target journey id with the max length 20
onboard_process array of string no displays the onboard process with the values 1,2
application_id string no displays the application id with the max. length of 254
payment_account_id string no displays the id of the payment
vendor_type_ref integer no  
store integer no  
createdBy integer no  
usere_type integer no  

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>vendor2/api/vendor_save

Example Body

{
 "vendor_name":"Testvendor123",
 "store":1,
 "createdBy":1
}

Example Response

{
 "id":13,
 "vendor_name":"Testvendor123",
 "vendor_status":"2",
 "createdDate":"2021-09-09T05:59:25.668219Z",
 "lastUpdated":"2021-09-09T05:59:25.668252Z",
 "ratings":5,
 "num_users_rated":1,
 "onboard":false,
 "onboard_status":null,
 "tos":null,
 "policy":null,
 "trg_journey_status":null,
 "trg_journey_id":null,
 "onboard_process":"1",
 "applicant_id":null,
 "payment_account_id":null,
 "vendor_type_ref":null,
 "store":1,
 "createdBy":1,
 "user_type":null
}

3.1.15. Enquiry API

3.1.15.1. Create Enquiry

This API is used to request a new enquiry to get the information of your interest.

POST   create_enquiry

Resource URI

<base URL> /enquiry/create_enquiry

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
category_id integer yes id of the category. Use Create Category api to get the category id
vendor_id integer yes id of the vendor. Use Vendor Save api to get the vendor id
product_id integer yes id of the product. Use Create Product api to get the product id
store_id integer yes id of the storey. Use Store Save api to get the store id
product_group_id integer yes displays the product group id
message sender_type array of string yes displays sender type. The available options are customer and vendor
user_name string yes displays the username with the min. length of 1
message_type string yes displays the type of the message with length of 1
message string yes displays the message with min. length 1

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/enquiry/create_enquiry

Example Body

{
 "category_id":10,
 "vendor_id":1,
 "product_id":1,
 "store_id":2,
 "product_group_id":31,
 "message":[
    {
       "sender_type":"customer",
       "user_name":"raghu",
       "message_type":"text",
       "message":"Hi"
    }
 ]
}

  **Example Response**
{
 "message":"Enquiry Created Successfully"
}

3.1.15.2. List Enquiry

This API is used to request a new enquiry to get the information of your interest.

POST   list_enquiry

Resource URI

<base URL> /enquiry/list_enquiry

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication No

Resource Properties

Parameter Data Type Mandatory Description
customer_id integer no id of the customer. Use register api to get customer id
store_id integer yes id of the storey. Use Store Save api to get the store id
vendor_id integer no id of the vendor. Use Vendor Save api to get the vendor id
user_type string yes displays the user type available options are user and vedor

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL/enquiry/list_enquiry

Customer Enquiry

Example Body

{
   "customer_id":108,
   "store_id":1,
   "user_type":"user"
}

  **Example Response**
{
   "message":"Customer Enquiry Retrieved Sucessfully",
   "total":2,
   "enquiry":[
      {
         "enquiry_id":20,
         "conversation":[
            {
               "message":"Hi",
               "datetime":"2021-09-23 06:12:55",
               "user_name":"string",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            },
            {
               "message":"hello",
               "datetime":"2021-09-23T07:53:24.008Z",
               "user_name":"Torry Harris",
               "sender_type":"vendor",
               "message_type":"text",
               "vendor_rating":5
            }
         ],
         "status":1,
         "created_on":"2021-09-23T07:53:08.139759Z",
         "updated_on":"2021-09-23T07:53:24.262217Z",
         "vendor_converstion_time":null,
         "user_converstion_time":null,
         "user_rating":0,
         "closed_by":null,
         "vendor_feedback":null,
         "user_feedback":null,
         "vendor_rating":0,
         "store_id":1,
         "vendor_id":10,
         "product_id":51,
         "customer_id":108,
         "category_id":7,
         "lastSeen_by_vendor":"2021-09-23 07:53:24.261922",
         "product_belonging_name":"Scampi 2 Kg",
         "product_group_id":1051,
         "lastSeen_by_user":null,
         "handle_by":"14",
         "read_by_user":false,
         "read_by_vendor":true,
         "product_details":{
            "facet_info":[

            ],
            "search_result":[
               {
                  "category_id":7,
                  "product_per_category":{
                     "count":1,
                     "product_ids":[
                        51
                     ],
                     "publisher_ids":[
                        "103"
                     ],
                     "product_details":[
                        {
                           "product_id":51,
                           "product_details":{
                              "product_name":"Scampi (Giant Prawns/Jhinga/Seegadi)",
                              "product_id":51,
                              "storeid":1,
                              "product_data":{
                                 "51":[
                                    "image_filelocation\image_name1.png"
                                 ],
                                 "attribute_data":{
                                    "Product Image":{
                                       "display_image":[
                                          "image_filelocation\image_name1.png"
                                       ]
                                    }
                                 },
                                 "meta_data":[
                                    {
                                       "attr_name":"product_id",
                                       "attr_type":"product_id",
                                       "attr_value":[
                                          "51"
                                       ]
                                    },
                                    {
                                       "attr_name":"product_name",
                                       "attr_type":"product_name",
                                       "attr_value":"Scampi (Giant Prawns/Jhinga/Seegadi)"
                                    },
                                    {
                                       "attr_name":"Product Image",
                                       "attr_type":"display_image",
                                       "attr_value":[
                                          "image_filelocation\image_name1.png"
                                       ]
                                    }
                                 ]
                              },
                              "product_type":"1",
                              "product_rating":5,
                              "num_users_rated":1,
                              "bookable_enum_attribute_values":[

                              ],
                              "form":[

                              ]
                           },
                           "publisher_per_product":{
                              "count":1,
                              "publsiher_details":[
                                 {
                                    "publishings_per_publisher":{
                                       "count":1,
                                       "publishings_per_publisher_details":[
                                          {
                                             "per_publishing_product_attribute_values":[
                                                {
                                                   "product_formset_belonging_name":"Default",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"999",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1096,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Price",
                                                               "attribute_ui_type":"Price",
                                                               "attribute_value":"999",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"on_offer",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"on",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1097,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"On_Offer",
                                                               "attribute_ui_type":"On_Offer",
                                                               "attribute_value":"on",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_name",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Today's offer",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1098,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Name",
                                                               "attribute_ui_type":"Offer_Name",
                                                               "attribute_value":"Today's offer",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"899.1",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1099,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Price",
                                                               "attribute_ui_type":"Offer_Price",
                                                               "attribute_value":"899.1",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_discount",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"10",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1100,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Discount",
                                                               "attribute_ui_type":"Offer_Discount",
                                                               "attribute_value":"10",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_start_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"01-06-2021",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1101,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Start_Date",
                                                               "attribute_ui_type":"Offer_Start_Date",
                                                               "attribute_value":"01-06-2021",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_end_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"08-06-2021",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1102,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_End_Date",
                                                               "attribute_ui_type":"Offer_End_Date",
                                                               "attribute_value":"08-06-2021",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Fresh and delicious cat fish steaks",
                                                               "attribute_storefront_ui_representation_type":"Short-Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1103,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Short Description",
                                                               "attribute_ui_type":"Text",
                                                               "attribute_value":"Fresh and delicious cat fish steaks",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation\image_name2.jpg,image_filelocation\image_name3.jpg,image_filelocation\image_name4.jpg",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1109,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Profile Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation\image_name1.jpg,image_filelocation\image_name2.jpg,image_filelocation\image_name3.jpg,image_filelocation\image_name4.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation\image_name4.jpg",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1110,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"List Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation\image_name4.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"stock_quantity",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"99985",
                                                               "attribute_storefront_ui_representation_type":"Inline-Text",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1111,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Stock Quantity",
                                                               "attribute_ui_type":"Stock_quantity",
                                                               "attribute_value":"99985",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"delivery_charge",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1112,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Apply Delivery Charge",
                                                               "attribute_ui_type":"Delivery_Charge",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"slashable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1113,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Slashable",
                                                               "attribute_ui_type":"Slashable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"fixed_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1114,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Fixed Price",
                                                               "attribute_ui_type":"Fixed_Price",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"charges",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1115,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Charges",
                                                               "attribute_ui_type":"Charges",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_watchable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1116,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Watchable",
                                                               "attribute_ui_type":"Is_Watchable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"watchable_content",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1117,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Watchable Content",
                                                               "attribute_ui_type":"Watchable_Content",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_a_game",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1118,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is a Game",
                                                               "attribute_ui_type":"Is_Game",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"game_url",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1119,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Game URL",
                                                               "attribute_ui_type":"Game_URL",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_region_restricted",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1120,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Region Restricted",
                                                               "attribute_ui_type":"Is_Region_restricted",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Default",
                                                   "product_formset_storefront_ui_name":"Default",
                                                   "product_formset_group_id":1051,
                                                   "product_formset_storefront_ui_position":"NORMAL",
                                                   "product_formsetid":1,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Pricing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"2 Kg",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1104,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Net Weight",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"2 Kg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Whole",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1105,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Type",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"Whole",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Pricing",
                                                   "product_formset_storefront_ui_name":"Pricing",
                                                   "product_formset_group_id":1051,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":3,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"About",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p><iframe frameborder=\"0\" src=\"//www.youtube.com/embed/Z4AXnZOsrK8\" width=\"640\" height=\"360\" class=\"note-video-clip\"></iframe><br></p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1106,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"About",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p><iframe frameborder=\"0\" src=\"//www.youtube.com/embed/Z4AXnZOsrK8\" width=\"640\" height=\"360\" class=\"note-video-clip\"></iframe><br></p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"About",
                                                   "product_formset_storefront_ui_name":"About",
                                                   "product_formset_group_id":1051,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":2,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"What you get",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - What you get\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"1\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">What you get</span></div><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><br></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"history-block dataId1 method\" style=\"box-sizing: inherit;\"><div class=\"info-title-left\" style=\"box-sizing: inherit;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 18px; font-weight: 700; color: rgb(0, 0, 0); margin-top: 10px;\">What's in your Box</p></div><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 220px;\"><div class=\"info-title-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 220px;\"><div class=\"left-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hook-fished</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish straight off the coast</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Stringent food-safety inspection</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Caught &amp; cut the same day</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Scaled and cleaned in RO-water</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Artisanal butchery</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Net weight of prepped meat only</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hygienically vacuum-packed</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Temperature controlled</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">100% chemical free</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Environmentally responsible fishing</span></li></div>&nbsp;<div class=\"right-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block; vertical-align: top;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Frozen fish</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish older than 18 hours or more</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Mix of different species</span></li></div></div></div></div></div></div></div>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1107,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"What_is_in_your_box",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - What you get\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"1\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">What you get</span></div><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><br></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"history-block dataId1 method\" style=\"box-sizing: inherit;\"><div class=\"info-title-left\" style=\"box-sizing: inherit;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 18px; font-weight: 700; color: rgb(0, 0, 0); margin-top: 10px;\">What's in your Box</p></div><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 220px;\"><div class=\"info-title-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 220px;\"><div class=\"left-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hook-fished</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish straight off the coast</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Stringent food-safety inspection</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Caught &amp; cut the same day</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Scaled and cleaned in RO-water</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Artisanal butchery</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Net weight of prepped meat only</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hygienically vacuum-packed</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Temperature controlled</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">100% chemical free</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Environmentally responsible fishing</span></li></div>&nbsp;<div class=\"right-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block; vertical-align: top;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Frozen fish</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish older than 18 hours or more</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Mix of different species</span></li></div></div></div></div></div></div></div>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"What you get",
                                                   "product_formset_storefront_ui_name":"What you get",
                                                   "product_formset_group_id":1051,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":5,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Sourcing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"2\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">Sourcing</span></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"source-block dataId2 method\" style=\"box-sizing: inherit;\"><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 250px;\"><div class=\"source-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 250px;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 14px; line-height: 1.47; color: rgb(85, 85, 85);\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! . &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:[null,0],&quot;11&quot;:4,&quot;12&quot;:0}\" style=\"box-sizing: inherit; font-size: 10pt; font-family: Arial;\">A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! .&nbsp;</span></p></div></div></div></div></div></div>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1108,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Sourcing",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"2\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">Sourcing</span></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"source-block dataId2 method\" style=\"box-sizing: inherit;\"><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 250px;\"><div class=\"source-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 250px;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 14px; line-height: 1.47; color: rgb(85, 85, 85);\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! . &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:[null,0],&quot;11&quot;:4,&quot;12&quot;:0}\" style=\"box-sizing: inherit; font-size: 10pt; font-family: Arial;\">A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! .&nbsp;</span></p></div></div></div></div></div></div>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Sourcing",
                                                   "product_formset_storefront_ui_name":"Sourcing",
                                                   "product_formset_group_id":1051,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":4,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                }
                                             ],
                                             "product_group_id":1051,
                                             "region_restricted_codes":[

                                             ],
                                             "product_attribute_values":[
                                                {
                                                   "attr_name":"Price",
                                                   "ui_position":"TAB",
                                                   "attr_type":"price",
                                                   "attr_value":"999",
                                                   "attr_id":1096
                                                },
                                                {
                                                   "attr_name":"On_Offer",
                                                   "ui_position":"TAB",
                                                   "attr_type":"on_offer",
                                                   "attr_value":"on",
                                                   "attr_id":1097
                                                },
                                                {
                                                   "attr_name":"Offer_Name",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_name",
                                                   "attr_value":"Today's offer",
                                                   "attr_id":1098
                                                },
                                                {
                                                   "attr_name":"Offer_Price",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_price",
                                                   "attr_value":"899.1",
                                                   "attr_id":1099
                                                },
                                                {
                                                   "attr_name":"Offer_Discount",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_discount",
                                                   "attr_value":"10",
                                                   "attr_id":1100
                                                },
                                                {
                                                   "attr_name":"Offer_Start_Date",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_start_date",
                                                   "attr_value":"01-06-2021",
                                                   "attr_id":1101
                                                },
                                                {
                                                   "attr_name":"Offer_End_Date",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_end_date",
                                                   "attr_value":"08-06-2021",
                                                   "attr_id":1102
                                                },
                                                {
                                                   "attr_name":"Short Description",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "attr_value":"Fresh and delicious cat fish steaks",
                                                   "attr_id":1103
                                                },
                                                {
                                                   "attr_name":"Net Weight",
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_value":"2 Kg",
                                                   "attr_id":1104
                                                },
                                                {
                                                   "attr_name":"Type",
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_value":"Whole",
                                                   "attr_id":1105
                                                },
                                                {
                                                   "attr_name":"About",
                                                   "ui_position":"TAB-DEFAULT",
                                                   "attr_type":"description",
                                                   "attr_value":"<p><iframe frameborder=\"0\" src=\"//www.youtube.com/embed/Z4AXnZOsrK8\" width=\"640\" height=\"360\" class=\"note-video-clip\"></iframe><br></p>",
                                                   "attr_id":1106
                                                },
                                                {
                                                   "attr_name":"What_is_in_your_box",
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "attr_value":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - What you get\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"1\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">What you get</span></div><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><br></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"history-block dataId1 method\" style=\"box-sizing: inherit;\"><div class=\"info-title-left\" style=\"box-sizing: inherit;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 18px; font-weight: 700; color: rgb(0, 0, 0); margin-top: 10px;\">What's in your Box</p></div><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 220px;\"><div class=\"info-title-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 220px;\"><div class=\"left-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hook-fished</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish straight off the coast</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Stringent food-safety inspection</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Caught &amp; cut the same day</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Scaled and cleaned in RO-water</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Artisanal butchery</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Net weight of prepped meat only</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Hygienically vacuum-packed</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Temperature controlled</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">100% chemical free</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/yes.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Environmentally responsible fishing</span></li></div>&nbsp;<div class=\"right-half\" style=\"box-sizing: inherit; width: 572.5px; display: inline-block; vertical-align: top;\"><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Frozen fish</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Fish older than 18 hours or more</span></li><li style=\"box-sizing: inherit; list-style-type: none; padding: 5px 0px;\"><span class=\"right-wrong\" style=\"box-sizing: inherit;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" src=\"https://s3-ap-southeast-1.amazonaws.com/liciousdev/Banner/no.png\" style=\"box-sizing: inherit; width: 18px;\"></span><span class=\"list-text\" style=\"box-sizing: inherit; margin-left: 10px; color: rgb(85, 85, 85); font-size: 13px; font-family: Lato;\">Mix of different species</span></li></div></div></div></div></div></div></div>",
                                                   "attr_id":1107
                                                },
                                                {
                                                   "attr_name":"Sourcing",
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "attr_value":"<div class=\"middle-container-image\" style=\"box-sizing: inherit; width: 1039.19px; height: 330px; overflow: hidden; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" class=\"containerImage1\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904375.3054--2018-02-0613:36:15--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 0; transition: opacity 550ms linear 0s;\"><img data-lazy=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"containerImage2 fading\" src=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" style=\"box-sizing: inherit; height: 330px; position: absolute; opacity: 1; transition: opacity 550ms linear 0s;\"></div><div class=\"container pdp-info reveal\" style=\"box-sizing: inherit; width: 1150px; margin-top: -435px; margin-bottom: 0px; max-width: 1280px; position: relative; color: rgba(0, 0, 0, 0.87); font-family: Roboto, sans-serif; font-size: 15px;\"><div class=\"product-page-info\" style=\"box-sizing: inherit; width: 632.5px; height: 360px; position: absolute; top: 87px; background: rgb(245, 245, 245); opacity: 0.95; right: 36.7969px; padding: 20px 30px; box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 18px 0px;\"><div class=\"info-title\" style=\"box-sizing: inherit; border-bottom: 1px solid rgba(98, 98, 98, 0.19); font-family: Lato; font-size: 18px; font-weight: 700; color: grey; padding-bottom: 15px; display: flex; width: 572.5px; justify-content: space-between;\"><div class=\"desc1\" data-pdplabel=\"ProductDetailPage - Sourcing\" data-gaaction=\"Click - Impression\" style=\"box-sizing: inherit; display: inline-block; text-align: center; cursor: pointer; flex: 1 1 0%;\"><span data-id=\"2\" data-imgurl=\"https://s3-ap-southeast-1.amazonaws.com/licious/pdp/1517904247.8084--2018-02-0613:34:07--260\" class=\"nav-active\" style=\"box-sizing: inherit; color: rgb(226, 15, 43); border-radius: 2px; border-bottom: 3px solid rgb(226, 15, 43); padding: 16px 0px;\">Sourcing</span></div></div><div class=\"info-Blocks\" style=\"box-sizing: inherit;\"><div class=\"source-block dataId2 method\" style=\"box-sizing: inherit;\"><div class=\"slimScrollDiv\" style=\"box-sizing: inherit; position: relative; overflow: hidden; width: auto; height: 250px;\"><div class=\"source-desc\" style=\"box-sizing: inherit; overflow: hidden; width: auto; height: 250px;\"><p style=\"box-sizing: inherit; font-family: Lato; font-size: 14px; line-height: 1.47; color: rgb(85, 85, 85);\"><span data-sheets-value=\"{&quot;1&quot;:2,&quot;2&quot;:&quot;A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! . &quot;}\" data-sheets-userformat=\"{&quot;2&quot;:769,&quot;3&quot;:[null,0],&quot;11&quot;:4,&quot;12&quot;:0}\" style=\"box-sizing: inherit; font-size: 10pt; font-family: Arial;\">A favourite among fish &amp; seafood connoisseurs, Giant Prawns are freshly caught from Licious farms, under the supervision of expert fish technologists, so that only the safest and the freshest catch reaches you! .&nbsp;</span></p></div></div></div></div></div></div>",
                                                   "attr_id":1108
                                                },
                                                {
                                                   "attr_name":"Profile Image",
                                                   "ui_position":"NORMAL-LEFT",
                                                   "attr_type":"display_image",
                                                   "attr_value":"image_filelocation\image_name1.jpg,image_filelocation\image_name2.jpg,image_filelocation\image_name3.jpg,image_filelocation\image_name4.jpg",
                                                   "attr_id":1109
                                                },
                                                {
                                                   "attr_name":"List Image",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_image",
                                                   "attr_value":"image_filelocation\image_name4.jpg",
                                                   "attr_id":1110
                                                },
                                                {
                                                   "attr_name":"Stock Quantity",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"stock_quantity",
                                                   "attr_value":"99985",
                                                   "attr_id":1111
                                                },
                                                {
                                                   "attr_name":"Apply Delivery Charge",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"delivery_charge",
                                                   "attr_value":null,
                                                   "attr_id":1112
                                                },
                                                {
                                                   "attr_name":"Is Slashable",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"slashable",
                                                   "attr_value":null,
                                                   "attr_id":1113
                                                },
                                                {
                                                   "attr_name":"Is Fixed Price",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"fixed_price",
                                                   "attr_value":null,
                                                   "attr_id":1114
                                                },
                                                {
                                                   "attr_name":"Charges",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"charges",
                                                   "attr_value":"0",
                                                   "attr_id":1115
                                                },
                                                {
                                                   "attr_name":"Is Watchable",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_watchable",
                                                   "attr_value":null,
                                                   "attr_id":1116
                                                },
                                                {
                                                   "attr_name":"Watchable Content",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"watchable_content",
                                                   "attr_value":"",
                                                   "attr_id":1117
                                                },
                                                {
                                                   "attr_name":"Is a Game",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_a_game",
                                                   "attr_value":null,
                                                   "attr_id":1118
                                                },
                                                {
                                                   "attr_name":"Game URL",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"game_url",
                                                   "attr_value":"",
                                                   "attr_id":1119
                                                },
                                                {
                                                   "attr_name":"Is Region Restricted",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_region_restricted",
                                                   "attr_value":null,
                                                   "attr_id":1120
                                                }
                                             ],
                                             "product_belonging_name":"Scampi 2 Kg",
                                             "per_publishing_form":[

                                             ],
                                             "firstpublishedon":"01/06/2021",
                                             "is_region_restricted":false
                                          }
                                       ]
                                    },
                                    "publisher_name":"Vendo",
                                    "publisher_type":3,
                                    "publisher_id":10,
                                    "publisher_rating":5,
                                    "num_users_rated":1
                                 }
                              ]
                           }
                        }
                     ]
                  }
               }
            ],
            "regex_details":[

            ]
         },
         "vendor_details":[

         ],
         "store_details":[

         ]
      },
      {
         "enquiry_id":17,
         "conversation":[
            {
               "message":"Hi Please",
               "datetime":"2021-09-14 11:01:51",
               "user_name":"string",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            },
            {
               "message":"hello",
               "datetime":"2021-09-23T07:51:20.593Z",
               "user_name":"Torry Harris",
               "sender_type":"vendor",
               "message_type":"text",
               "vendor_rating":5
            },
            {
               "message":"How r u",
               "datetime":"2021-09-23 13:22:14",
               "user_name":"string",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            },
            {
               "message":"good\n",
               "datetime":"2021-09-23T07:52:35.853Z",
               "user_name":"Torry Harris",
               "sender_type":"vendor",
               "message_type":"text",
               "vendor_rating":5
            }
         ],
         "status":0,
         "created_on":"2021-09-21T08:54:22.473727Z",
         "updated_on":"2021-09-23T07:53:47.256509Z",
         "vendor_converstion_time":null,
         "user_converstion_time":null,
         "user_rating":0,
         "closed_by":null,
         "vendor_feedback":"hi",
         "user_feedback":null,
         "vendor_rating":0,
         "store_id":1,
         "vendor_id":10,
         "product_id":50,
         "customer_id":108,
         "category_id":29,
         "lastSeen_by_vendor":"2021-09-23 07:52:36.118413",
         "product_belonging_name":"sushilrahu",
         "product_group_id":1050,
         "lastSeen_by_user":"2021-09-23 07:53:47.256215",
         "handle_by":"14",
         "read_by_user":true,
         "read_by_vendor":true,
         "product_details":{
            "facet_info":[

            ],
            "search_result":[
               {
                  "category_id":29,
                  "product_per_category":{
                     "count":1,
                     "product_ids":[
                        50
                     ],
                     "publisher_ids":[
                        "103"
                     ],
                     "product_details":[
                        {
                           "product_id":50,
                           "product_details":{
                              "product_name":"Rohu",
                              "product_id":50,
                              "storeid":1,
                              "product_data":{
                                 "50":[
                                    "mimage_filelocation\image_name.jpeg"
                                 ],
                                 "attribute_data":{
                                    "Product Image":{
                                       "display_image":[
                                          "image_filelocation\image_name.jpeg"
                                       ]
                                    }
                                 },
                                 "meta_data":[
                                    {
                                       "attr_name":"product_id",
                                       "attr_type":"product_id",
                                       "attr_value":[
                                          "50"
                                       ]
                                    },
                                    {
                                       "attr_name":"product_name",
                                       "attr_type":"product_name",
                                       "attr_value":"Rohu"
                                    },
                                    {
                                       "attr_name":"Product Image",
                                       "attr_type":"display_image",
                                       "attr_value":[
                                          "image_filelocation\image_name.jpeg"
                                       ]
                                    }
                                 ]
                              },
                              "product_type":"1",
                              "product_rating":5,
                              "num_users_rated":1,
                              "bookable_enum_attribute_values":[

                              ],
                              "form":[

                              ]
                           },
                           "publisher_per_product":{
                              "count":1,
                              "publsiher_details":[
                                 {
                                    "publishings_per_publisher":{
                                       "count":1,
                                       "publishings_per_publisher_details":[
                                          {
                                             "per_publishing_product_attribute_values":[
                                                {
                                                   "product_formset_belonging_name":"Default",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"fresh",
                                                               "attribute_storefront_ui_representation_type":"Short-Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1572,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Short Description",
                                                               "attribute_ui_type":"Text",
                                                               "attribute_value":"fresh",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"200",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1573,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Price",
                                                               "attribute_ui_type":"Price",
                                                               "attribute_value":"200",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"on_offer",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1574,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"On_Offer",
                                                               "attribute_ui_type":"On_Offer",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_name",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Currently not on offer",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1575,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Name",
                                                               "attribute_ui_type":"Offer_Name",
                                                               "attribute_value":"Currently not on offer",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"200",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1576,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Price",
                                                               "attribute_ui_type":"Offer_Price",
                                                               "attribute_value":"200",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_discount",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1577,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Discount",
                                                               "attribute_ui_type":"Offer_Discount",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_start_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1578,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Start_Date",
                                                               "attribute_ui_type":"Offer_Start_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_end_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1579,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_End_Date",
                                                               "attribute_ui_type":"Offer_End_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1585,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Profile Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1586,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"List Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1587,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"profile video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1588,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"list video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"stock_quantity",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"96",
                                                               "attribute_storefront_ui_representation_type":"Inline-Text",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1590,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Stock Quantity",
                                                               "attribute_ui_type":"Stock_quantity",
                                                               "attribute_value":"96",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"delivery_charge",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1591,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Apply Delivery Charge",
                                                               "attribute_ui_type":"Delivery_Charge",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"slashable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1592,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Slashable",
                                                               "attribute_ui_type":"Slashable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"fixed_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1593,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Fixed Price",
                                                               "attribute_ui_type":"Fixed_Price",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"charges",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1594,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Charges",
                                                               "attribute_ui_type":"Charges",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_watchable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1595,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Watchable",
                                                               "attribute_ui_type":"Is_Watchable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"watchable_content",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1596,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Watchable Content",
                                                               "attribute_ui_type":"Watchable_Content",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_a_game",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1597,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is a Game",
                                                               "attribute_ui_type":"Is_Game",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"game_url",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1598,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Game URL",
                                                               "attribute_ui_type":"Game_URL",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_region_restricted",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1599,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Region Restricted",
                                                               "attribute_ui_type":"Is_Region_restricted",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Default",
                                                   "product_formset_storefront_ui_name":"Default",
                                                   "product_formset_group_id":1050,
                                                   "product_formset_storefront_ui_position":"NORMAL",
                                                   "product_formsetid":1,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Pricing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0.250 Kg",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1580,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Net Weight",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"0.250 Kg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Curry Cut",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1581,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Type",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"Curry Cut",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"2",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1589,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Netwght",
                                                               "attribute_ui_type":"Quantity",
                                                               "attribute_value":"2",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Pricing",
                                                   "product_formset_storefront_ui_name":"Pricing",
                                                   "product_formset_group_id":1050,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":3,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"About",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>aaa</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1582,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"About",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>aaa</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"About",
                                                   "product_formset_storefront_ui_name":"About",
                                                   "product_formset_group_id":1050,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":2,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"What you get",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>aaa</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1583,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"What_is_in_your_box",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>aaa</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"What you get",
                                                   "product_formset_storefront_ui_name":"What you get",
                                                   "product_formset_group_id":1050,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":5,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Sourcing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>aaa</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":1584,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Sourcing",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>aaa</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Sourcing",
                                                   "product_formset_storefront_ui_name":"Sourcing",
                                                   "product_formset_group_id":1050,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":4,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                }
                                             ],
                                             "product_group_id":1050,
                                             "region_restricted_codes":[

                                             ],
                                             "product_attribute_values":[
                                                {
                                                   "attr_name":"Short Description",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "attr_value":"fresh",
                                                   "attr_id":1572
                                                },
                                                {
                                                   "attr_name":"Price",
                                                   "ui_position":"TAB",
                                                   "attr_type":"price",
                                                   "attr_value":"200",
                                                   "attr_id":1573
                                                },
                                                {
                                                   "attr_name":"On_Offer",
                                                   "ui_position":"TAB",
                                                   "attr_type":"on_offer",
                                                   "attr_value":null,
                                                   "attr_id":1574
                                                },
                                                {
                                                   "attr_name":"Offer_Name",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_name",
                                                   "attr_value":"Currently not on offer",
                                                   "attr_id":1575
                                                },
                                                {
                                                   "attr_name":"Offer_Price",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_price",
                                                   "attr_value":"200",
                                                   "attr_id":1576
                                                },
                                                {
                                                   "attr_name":"Offer_Discount",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_discount",
                                                   "attr_value":"0",
                                                   "attr_id":1577
                                                },
                                                {
                                                   "attr_name":"Offer_Start_Date",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_start_date",
                                                   "attr_value":"",
                                                   "attr_id":1578
                                                },
                                                {
                                                   "attr_name":"Offer_End_Date",
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_end_date",
                                                   "attr_value":"",
                                                   "attr_id":1579
                                                },
                                                {
                                                   "attr_name":"Net Weight",
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_value":"0.250 Kg",
                                                   "attr_id":1580
                                                },
                                                {
                                                   "attr_name":"Type",
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_value":"Curry Cut",
                                                   "attr_id":1581
                                                },
                                                {
                                                   "attr_name":"About",
                                                   "ui_position":"TAB-DEFAULT",
                                                   "attr_type":"description",
                                                   "attr_value":"<p>aaa</p>",
                                                   "attr_id":1582
                                                },
                                                {
                                                   "attr_name":"What_is_in_your_box",
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "attr_value":"<p>aaa</p>",
                                                   "attr_id":1583
                                                },
                                                {
                                                   "attr_name":"Sourcing",
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "attr_value":"<p>aaa</p>",
                                                   "attr_id":1584
                                                },
                                                {
                                                   "attr_name":"Profile Image",
                                                   "ui_position":"NORMAL-LEFT",
                                                   "attr_type":"display_image",
                                                   "attr_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                   "attr_id":1585
                                                },
                                                {
                                                   "attr_name":"List Image",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_image",
                                                   "attr_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                   "attr_id":1586
                                                },
                                                {
                                                   "attr_name":"profile video",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "attr_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                   "attr_id":1587
                                                },
                                                {
                                                   "attr_name":"list video",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "attr_value":"/home/dmadmin/admin/digitmarketadmin/image_filelocation/image_name.jpg",
                                                   "attr_id":1588
                                                },
                                                {
                                                   "attr_name":"Netwght",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "attr_value":"2",
                                                   "attr_id":1589
                                                },
                                                {
                                                   "attr_name":"Stock Quantity",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"stock_quantity",
                                                   "attr_value":"96",
                                                   "attr_id":1590
                                                },
                                                {
                                                   "attr_name":"Apply Delivery Charge",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"delivery_charge",
                                                   "attr_value":null,
                                                   "attr_id":1591
                                                },
                                                {
                                                   "attr_name":"Is Slashable",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"slashable",
                                                   "attr_value":null,
                                                   "attr_id":1592
                                                },
                                                {
                                                   "attr_name":"Is Fixed Price",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"fixed_price",
                                                   "attr_value":null,
                                                   "attr_id":1593
                                                },
                                                {
                                                   "attr_name":"Charges",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"charges",
                                                   "attr_value":"0",
                                                   "attr_id":1594
                                                },
                                                {
                                                   "attr_name":"Is Watchable",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_watchable",
                                                   "attr_value":null,
                                                   "attr_id":1595
                                                },
                                                {
                                                   "attr_name":"Watchable Content",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"watchable_content",
                                                   "attr_value":"",
                                                   "attr_id":1596
                                                },
                                                {
                                                   "attr_name":"Is a Game",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_a_game",
                                                   "attr_value":null,
                                                   "attr_id":1597
                                                },
                                                {
                                                   "attr_name":"Game URL",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"game_url",
                                                   "attr_value":"",
                                                   "attr_id":1598
                                                },
                                                {
                                                   "attr_name":"Is Region Restricted",
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_region_restricted",
                                                   "attr_value":null,
                                                   "attr_id":1599
                                                }
                                             ],
                                             "product_belonging_name":"sushilrahu",
                                             "per_publishing_form":[

                                             ],
                                             "firstpublishedon":"09/09/2021",
                                             "is_region_restricted":false
                                          }
                                       ]
                                    },
                                    "publisher_name":"Vendo",
                                    "publisher_type":3,
                                    "publisher_id":10,
                                    "publisher_rating":5,
                                    "num_users_rated":1
                                 }
                              ]
                           }
                        }
                     ]
                  }
               }
            ],
            "regex_details":[

            ]
         },
         "vendor_details":[

         ],
         "store_details":[

         ]
      }
   ]
}

Vendor Enquiry

{
   "vendor_id":1,
   "store_id":1,
   "user_type":"vendor"
}
{
   "message":"Vendor Enquiry Retrieved Sucessfully",
   "total":3,
   "enquiry":[
      {
         "enquiry_id":12,
         "conversation":[
            {
               "message":"Is it fish or pineapple?",
               "datetime":"2021-07-23 10:12:27",
               "user_name":"Sushil",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            }
         ],
         "status":1,
         "created_on":"2021-07-23T04:54:02.111810Z",
         "updated_on":"2021-07-23T04:54:02.111853Z",
         "vendor_converstion_time":null,
         "user_converstion_time":null,
         "user_rating":0,
         "closed_by":null,
         "vendor_feedback":null,
         "user_feedback":null,
         "vendor_rating":0,
         "store_id":1,
         "vendor_id":1,
         "product_id":6,
         "customer_id":54,
         "category_id":24,
         "lastSeen_by_vendor":null,
         "product_belonging_name":"Fishes",
         "product_group_id":16,
         "lastSeen_by_user":null,
         "handle_by":"0",
         "read_by_user":false,
         "read_by_vendor":false,
         "product_details":{
            "facet_info":[

            ],
            "search_result":[
               {
                  "category_id":24,
                  "product_per_category":{
                     "count":1,
                     "product_ids":[
                        6
                     ],
                     "publisher_ids":[
                        "13"
                     ],
                     "product_details":[
                        {
                           "product_id":6,
                           "product_details":{
                              "product_name":"Fresh Fish",
                              "product_id":6,
                              "storeid":1,
                              "product_data":{
                                 "6":[
                                    "image_filelocation/image_name6.jpg"
                                 ],
                                 "attribute_data":{
                                    "Product Image":{
                                       "display_image":[
                                          "image_filelocation/image_name6.jpg"
                                       ]
                                    }
                                 },
                                 "meta_data":[
                                    {
                                       "attr_name":"product_id",
                                       "attr_type":"product_id",
                                       "attr_value":[
                                          "6"
                                       ]
                                    },
                                    {
                                       "attr_name":"product_name",
                                       "attr_type":"product_name",
                                       "attr_value":"Fresh Fish"
                                    },
                                    {
                                       "attr_name":"Product Image",
                                       "attr_type":"display_image",
                                       "attr_value":[
                                          "image_filelocation/image_name6.jpg"
                                       ]
                                    }
                                 ]
                              },
                              "product_type":"1",
                              "product_rating":5,
                              "num_users_rated":1,
                              "bookable_enum_attribute_values":[

                              ],
                              "form":[

                              ]
                           },
                           "publisher_per_product":{
                              "count":1,
                              "publsiher_details":[
                                 {
                                    "publishings_per_publisher":{
                                       "count":1,
                                       "publishings_per_publisher_details":[
                                          {
                                             "per_publishing_product_attribute_values":[
                                                {
                                                   "product_formset_belonging_name":"Default",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Desc Fishes",
                                                               "attribute_storefront_ui_representation_type":"Short-Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":142,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Short Description",
                                                               "attribute_ui_type":"Text",
                                                               "attribute_value":"Desc Fishes",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"122",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":143,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Price",
                                                               "attribute_ui_type":"Price",
                                                               "attribute_value":"122",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"on_offer",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":144,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"On_Offer",
                                                               "attribute_ui_type":"On_Offer",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_name",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Currently not on offer",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":145,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Name",
                                                               "attribute_ui_type":"Offer_Name",
                                                               "attribute_value":"Currently not on offer",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"122",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":146,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Price",
                                                               "attribute_ui_type":"Offer_Price",
                                                               "attribute_value":"122",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_discount",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":147,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Discount",
                                                               "attribute_ui_type":"Offer_Discount",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_start_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":148,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Start_Date",
                                                               "attribute_ui_type":"Offer_Start_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_end_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":149,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_End_Date",
                                                               "attribute_ui_type":"Offer_End_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":155,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Profile Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":156,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"List Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"video_filelocation/video_name1 - Copy.mp4",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":157,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"profile video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"ideo_filelocation/video_name1 - Copy.mp4",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"ideo_filelocation/video_name1 - Copy.mp4 ",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":158,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"list video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"ideo_filelocation/video_name1 - Copy.mp4",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"stock_quantity",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"100000",
                                                               "attribute_storefront_ui_representation_type":"Inline-Text",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":159,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Stock Quantity",
                                                               "attribute_ui_type":"Stock_quantity",
                                                               "attribute_value":"100000",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"delivery_charge",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":160,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Apply Delivery Charge",
                                                               "attribute_ui_type":"Delivery_Charge",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"slashable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":161,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Slashable",
                                                               "attribute_ui_type":"Slashable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"fixed_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":162,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Fixed Price",
                                                               "attribute_ui_type":"Fixed_Price",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"charges",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":163,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Charges",
                                                               "attribute_ui_type":"Charges",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_watchable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":164,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Watchable",
                                                               "attribute_ui_type":"Is_Watchable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"watchable_content",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":165,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Watchable Content",
                                                               "attribute_ui_type":"Watchable_Content",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_a_game",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":166,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is a Game",
                                                               "attribute_ui_type":"Is_Game",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"game_url",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":167,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Game URL",
                                                               "attribute_ui_type":"Game_URL",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_region_restricted",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":168,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Region Restricted",
                                                               "attribute_ui_type":"Is_Region_restricted",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Default",
                                                   "product_formset_storefront_ui_name":"Default",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"NORMAL",
                                                   "product_formsetid":1,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Pricing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0.250 Kg",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":150,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Net Weight",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"0.250 Kg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Curry Cut",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":151,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Type",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"Curry Cut",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Pricing",
                                                   "product_formset_storefront_ui_name":"Pricing",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":3,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"About",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>About</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":152,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"About",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>About</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"About",
                                                   "product_formset_storefront_ui_name":"About",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":2,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"What you get",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>What is in box</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":153,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"What_is_in_your_box",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>What is in box</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"What you get",
                                                   "product_formset_storefront_ui_name":"What you get",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":5,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Sourcing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>Sourcing</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":154,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Sourcing",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>Sourcing</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Sourcing",
                                                   "product_formset_storefront_ui_name":"Sourcing",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":4,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                }
                                             ],
                                             "product_group_id":16,
                                             "region_restricted_codes":[

                                             ],
                                             "product_attribute_values":[
                                                {
                                                   "attr_name":"Short Description",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "required":true,
                                                   "attr_value":"Desc Fishes",
                                                   "attr_id":104
                                                },
                                                {
                                                   "attr_name":"Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"price",
                                                   "required":true,
                                                   "attr_value":"122",
                                                   "attr_id":105
                                                },
                                                {
                                                   "attr_name":"On_Offer",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"on_offer",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":106
                                                },
                                                {
                                                   "attr_name":"Offer_Name",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_name",
                                                   "required":true,
                                                   "attr_value":"Currently not on offer",
                                                   "attr_id":107
                                                },
                                                {
                                                   "attr_name":"Offer_Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_price",
                                                   "required":true,
                                                   "attr_value":"122",
                                                   "attr_id":108
                                                },
                                                {
                                                   "attr_name":"Offer_Discount",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_discount",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":109
                                                },
                                                {
                                                   "attr_name":"Offer_Start_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_start_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":110
                                                },
                                                {
                                                   "attr_name":"Offer_End_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_end_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":111
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Net Weight",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"0.250 Kg",
                                                   "attr_id":112
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Type",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"image_filelocation/image_name1.jpg",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"Curry Cut",
                                                   "attr_id":113
                                                },
                                                {
                                                   "attr_name":"About",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB-DEFAULT",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>About</p>",
                                                   "attr_id":114
                                                },
                                                {
                                                   "attr_name":"What_is_in_your_box",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>What is in box</p>",
                                                   "attr_id":115
                                                },
                                                {
                                                   "attr_name":"Sourcing",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>Sourcing</p>",
                                                   "attr_id":116
                                                },
                                                {
                                                   "attr_name":"Profile Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL-LEFT",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                   "attr_id":117
                                                },
                                                {
                                                   "attr_name":"List Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"image_filelocation/image_name1.png,image_filelocation/image_name2.png,image_filelocation/image_name3.png,image_filelocation/image_name4.png",
                                                   "attr_id":118
                                                },
                                                {
                                                   "attr_name":"profile video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"video_filelocation/video_name.mp4",
                                                   "attr_id":119
                                                },
                                                {
                                                   "attr_name":"list video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"video_filelocation/video_name.mp4",
                                                   "attr_id":120
                                                },
                                                {
                                                   "attr_name":"Stock Quantity",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"stock_quantity",
                                                   "required":true,
                                                   "attr_value":"100000",
                                                   "attr_id":121
                                                },
                                                {
                                                   "attr_name":"Apply Delivery Charge",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"delivery_charge",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":123
                                                },
                                                {
                                                   "attr_name":"Is Slashable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"slashable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":124
                                                },
                                                {
                                                   "attr_name":"Is Fixed Price",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"fixed_price",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":125
                                                },
                                                {
                                                   "attr_name":"Charges",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"charges",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":126
                                                },
                                                {
                                                   "attr_name":"Is Watchable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_watchable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":127
                                                },
                                                {
                                                   "attr_name":"Watchable Content",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"watchable_content",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":128
                                                },
                                                {
                                                   "attr_name":"Is a Game",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_a_game",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":129
                                                },
                                                {
                                                   "attr_name":"Game URL",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"game_url",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":130
                                                },
                                                {
                                                   "attr_name":"Is Region Restricted",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_region_restricted",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":131
                                                }
                                             ],
                                             "product_belonging_name":"Fishes",
                                             "per_publishing_form":[

                                             ],
                                             "firstpublishedon":"11/11/2020",
                                             "is_region_restricted":false
                                          }
                                       ]
                                    },
                                    "publisher_name":"THBS",
                                    "publisher_type":3,
                                    "publisher_id":1,
                                    "publisher_rating":5,
                                    "num_users_rated":1
                                 }
                              ]
                           }
                        }
                     ]
                  }
               }
            ],
            "regex_details":[

            ]
         },
         "vendor_details":[
            {
               "id":1,
               "vendor_name":"THBS",
               "vendor_type_ref_id":1,
               "vendor_status":"2",
               "store_id":1,
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:56:59.495861Z",
               "lastUpdated":"2020-11-02T03:56:59.495900Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "onboard_process":"1",
               "applicant_id":null,
               "payment_account_id":null
            }
         ],
         "store_details":[
            {
               "id":1,
               "store_name":"THBS Fisheries",
               "resource_json":"{\"1\": [\"image_filelocation/image_name1.jpeg\", \"video_filelocation/video_name1.mp4\", \"image_filelocation/image_name2.jpg\"], \"attribute_data\": {\"DisplayVideo\": {\"display_video\": [\"video_filelocation/video_name1.mp4\"]}, \"DisplayLogo\": {\"display_logo\": [\"image_filelocation/image_name.jpeg\"]}, \"DisplayImage\": {\"display_image\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"id\", \"attr_type\": \"id\", \"attr_value\": [\"1\"]}, {\"attr_name\": \"context\", \"attr_type\": \"context\", \"attr_value\": [\"dmstore\"]}, {\"attr_name\": \"Ext__DisplayLogo\", \"attr_type\": \"Ext__DisplayLogo\", \"attr_value\": [\"media/store2/1/marine-fishes-2187519.jpeg\"]}, {\"attr_name\": \"Ext__DisplayImage\", \"attr_type\": \"Ext__DisplayImage\", \"attr_value\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}, {\"attr_name\": \"DisplayVideo\", \"attr_type\": \"display_video\", \"attr_value\": [\"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\"]}]}",
               "storeType":"2",
               "store_type_ref_id":1,
               "store_status":"1",
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:38:40.134226Z",
               "lastUpdated":"2021-08-25T13:33:15.246666Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "is_merged":false,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "store_url":"",
               "analytics_view":true,
               "analytics_url":"https://dmdev.digitmarket.com:444/viewdashboard/StoreAdminData?store_id=1",
               "onboard_process":"1",
               "applicant_id":null,
               "store_delivery_slots":"{\"has_delivery_charge\": true, \"delivery_charge\": 49, \"min_order_for_free_delivery\": 499, \"contact_us\": [{\"email\": \"abc@abc.com\", \"isd_code\": \"+91\", \"phone_number\": \"180000000\"}], \"region_restricted\": {\"is_india\": true, \"is_limited\": true, \"pincodes\": [\"560001\", \"560002\", \"560003\", \"560004\", \"560025\", \"560030\", \"560034\", \"560050\", \"560056\", \"560063\", \"560300\"]}, \"max_booking_window\": 3, \"delay_in_booking\": 1, \"store_delivery_slots\": [{\"attribute_name\": \"Parts Of The Day\", \"attribute_type\": \"parts_of_the_day\", \"attribute_value\": [{\"option\": \"Early Morning\", \"start_range\": \"5:00am\", \"end_range\": \"7:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 30, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Morning\", \"start_range\": \"7:00am\", \"end_range\": \"11:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 10, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Mid Day\", \"start_range\": \"11:00am\", \"end_range\": \"1:00pm\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 15, \"max_booking_window\": 5, \"delay_in_booking\": 1}]}, {\"attribute_name\": \"Exclude Dates\", \"attribute_type\": \"exclude_dates\", \"attribute_value\": [{\"option\": \"06/01/2021\"}, {\"option\": \"05/28/2021\"}]}, {\"attribute_name\": \"Exclude Days\", \"attribute_type\": \"exclude_days\", \"attribute_value\": [{\"option\": \"Saturday\"}, {\"option\": \"Sunday\"}]}]}"
            }
         ],
         "category_details":[
            {
               "id":24,
               "category_name":"Frozen",
               "parent_category_id":5,
               "store_id":1,
               "store_admin_id":1,
               "category_type":"1",
               "resource_json":"{\"24\": [\"media/store2/1/category2/24/1.jpg\"], \"attribute_data\": {\"Category Image\": {\"display_image\": [\"media/store2/1/category2/24/1.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"category_id\", \"attr_type\": \"category_id\", \"attr_value\": [\"24\"]}, {\"attr_name\": \"Category Image\", \"attr_type\": \"display_image\", \"attr_value\": [\"media/store2/1/category2/24/1.jpg\"]}]}",
               "category_group_id":null,
               "child_level":2,
               "parent_category_hierarchy":"25",
               "category_status":"1",
               "source":"1"
            }
         ],
         "user_details":[
            {
               "id":54,
               "salutation":"Mr.",
               "first_name":"Sushil",
               "last_name":"Sarraf",
               "company_name":null,
               "contact_display_name":"Sushil",
               "contact_email":"sushil8@gmail.com",
               "require_password":true,
               "password":"$2b$12$d.kMF5LpjfUgkTq2rvTUmuTZhhuE8K20ir2sC1n4.TX3xL7smd0da",
               "avatar":"",
               "store_id":1,
               "created_source":"Created",
               "date_of_Joining":"2021-06-17T06:20:09.058674Z",
               "customer_status":"2"
            }
         ]
      },
      {
         "enquiry_id":2,
         "conversation":[
            {
               "message":"Hello there.",
               "datetime":"2020-12-15 17:05:40",
               "user_name":"Arun",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            }
         ],
         "status":0,
         "created_on":"2020-12-16T10:10:00.851201Z",
         "updated_on":"2021-09-09T07:07:00.432014Z",
         "vendor_converstion_time":null,
         "user_converstion_time":null,
         "user_rating":0,
         "closed_by":"vendor",
         "vendor_feedback":null,
         "user_feedback":null,
         "vendor_rating":null,
         "store_id":1,
         "vendor_id":1,
         "product_id":5,
         "customer_id":2,
         "category_id":24,
         "lastSeen_by_vendor":null,
         "product_belonging_name":"Frozen",
         "product_group_id":15,
         "lastSeen_by_user":"2020-12-16 10:10:26.314521",
         "handle_by":"0",
         "read_by_user":true,
         "read_by_vendor":false,
         "product_details":{
            "facet_info":[

            ],
            "search_result":[
               {
                  "category_id":24,
                  "product_per_category":{
                     "count":1,
                     "product_ids":[
                        5
                     ],
                     "publisher_ids":[
                        "13"
                     ],
                     "product_details":[
                        {
                           "product_id":5,
                           "product_details":{
                              "product_name":"Frozen Fish",
                              "product_id":5,
                              "storeid":1,
                              "product_data":{
                                 "5":[
                                    "image_filelocation/image_name5.jpg"
                                 ],
                                 "attribute_data":{
                                    "Product Image":{
                                       "display_image":[
                                          "image_filelocation/image_name5.jpg"
                                       ]
                                    }
                                 },
                                 "meta_data":[
                                    {
                                       "attr_name":"product_id",
                                       "attr_type":"product_id",
                                       "attr_value":[
                                          "5"
                                       ]
                                    },
                                    {
                                       "attr_name":"product_name",
                                       "attr_type":"product_name",
                                       "attr_value":"Frozen Fish"
                                    },
                                    {
                                       "attr_name":"Product Image",
                                       "attr_type":"display_image",
                                       "attr_value":[
                                          "image_filelocation/image_name5.jpg"
                                       ]
                                    }
                                 ]
                              },
                              "product_type":"1",
                              "product_rating":5,
                              "num_users_rated":1,
                              "bookable_enum_attribute_values":[

                              ],
                              "form":[

                              ]
                           },
                           "publisher_per_product":{
                              "count":1,
                              "publsiher_details":[
                                 {
                                    "publishings_per_publisher":{
                                       "count":1,
                                       "publishings_per_publisher_details":[
                                          {
                                             "per_publishing_product_attribute_values":[
                                                {
                                                   "product_formset_belonging_name":"Default",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Frozen Fishes",
                                                               "attribute_storefront_ui_representation_type":"Short-Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":115,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Short Description",
                                                               "attribute_ui_type":"Text",
                                                               "attribute_value":"Frozen Fishes",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"699",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":116,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Price",
                                                               "attribute_ui_type":"Price",
                                                               "attribute_value":"699",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"on_offer",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":117,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"On_Offer",
                                                               "attribute_ui_type":"On_Offer",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_name",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Currently not on offer",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":118,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Name",
                                                               "attribute_ui_type":"Offer_Name",
                                                               "attribute_value":"Currently not on offer",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"699",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":119,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Price",
                                                               "attribute_ui_type":"Offer_Price",
                                                               "attribute_value":"699",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_discount",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":120,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Discount",
                                                               "attribute_ui_type":"Offer_Discount",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_start_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":121,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Start_Date",
                                                               "attribute_ui_type":"Offer_Start_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_end_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":122,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_End_Date",
                                                               "attribute_ui_type":"Offer_End_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation/image_name(1).png,image_filelocation/image_name(2).png,image_filelocation/image_name(3).png,image_filelocation/image_name(1).png",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":128,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Profile Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation/image_name(1).png,image_filelocation/image_name(2).png,image_filelocation/image_name(3).png,image_filelocation/image_name(1).png,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"image_filelocation/image_name(1).png,image_filelocation/image_name(2).png,image_filelocation/image_name(3).png,image_filelocation/image_name(1).png",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":129,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"List Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"image_filelocation/image_name(1).png,image_filelocation/image_name(2).png,image_filelocation/image_name(3).png,image_filelocation/image_name(1).png",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"video_filelocation/video_name1.mp4,video_filelocation/video_name2.mp4",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":130,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"profile video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"video_filelocation/video_name1.mp4,video_filelocation/video_name2.mp4,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"video_filelocation/video_name1.mp4,video_filelocation/video_name3.mp4",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":131,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"list video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"video_filelocation/video_name1.mp4,video_filelocation/video_name3.mp4",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"stock_quantity",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"100000",
                                                               "attribute_storefront_ui_representation_type":"Inline-Text",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":132,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Stock Quantity",
                                                               "attribute_ui_type":"Stock_quantity",
                                                               "attribute_value":"100000",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"delivery_charge",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":133,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Apply Delivery Charge",
                                                               "attribute_ui_type":"Delivery_Charge",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"slashable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":134,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Slashable",
                                                               "attribute_ui_type":"Slashable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"fixed_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":135,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Fixed Price",
                                                               "attribute_ui_type":"Fixed_Price",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"charges",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":136,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Charges",
                                                               "attribute_ui_type":"Charges",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_watchable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":137,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Watchable",
                                                               "attribute_ui_type":"Is_Watchable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"watchable_content",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":138,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Watchable Content",
                                                               "attribute_ui_type":"Watchable_Content",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_a_game",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":139,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is a Game",
                                                               "attribute_ui_type":"Is_Game",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"game_url",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":140,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Game URL",
                                                               "attribute_ui_type":"Game_URL",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_region_restricted",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":141,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Region Restricted",
                                                               "attribute_ui_type":"Is_Region_restricted",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Default",
                                                   "product_formset_storefront_ui_name":"Default",
                                                   "product_formset_group_id":15,
                                                   "product_formset_storefront_ui_position":"NORMAL",
                                                   "product_formsetid":1,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Pricing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"1 Kg",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":123,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Net Weight",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"1 Kg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Steaks",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":124,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Type",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"Steaks",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Pricing",
                                                   "product_formset_storefront_ui_name":"Pricing",
                                                   "product_formset_group_id":15,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":3,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"About",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>About: Frozen Fishes Description<br></p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":125,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"About",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>About: Frozen Fishes Description<br></p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"About",
                                                   "product_formset_storefront_ui_name":"About",
                                                   "product_formset_group_id":15,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":2,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"What you get",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">What is in your box</span>: Frozen Fishes Description<br></p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":126,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"What_is_in_your_box",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">What is in your box</span>: Frozen Fishes Description<br></p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"What you get",
                                                   "product_formset_storefront_ui_name":"What you get",
                                                   "product_formset_group_id":15,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":5,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Sourcing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">Sourcing</span>: Frozen Fishes Description<br></p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":127,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Sourcing",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">Sourcing</span>: Frozen Fishes Description<br></p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Sourcing",
                                                   "product_formset_storefront_ui_name":"Sourcing",
                                                   "product_formset_group_id":15,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":4,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                }
                                             ],
                                             "product_group_id":15,
                                             "region_restricted_codes":[

                                             ],
                                             "product_attribute_values":[
                                                {
                                                   "attr_name":"Short Description",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "required":true,
                                                   "attr_value":"Frozen Fishes",
                                                   "attr_id":76
                                                },
                                                {
                                                   "attr_name":"Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"price",
                                                   "required":true,
                                                   "attr_value":"699",
                                                   "attr_id":77
                                                },
                                                {
                                                   "attr_name":"On_Offer",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"on_offer",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":78
                                                },
                                                {
                                                   "attr_name":"Offer_Name",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_name",
                                                   "required":true,
                                                   "attr_value":"Currently not on offer",
                                                   "attr_id":79
                                                },
                                                {
                                                   "attr_name":"Offer_Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_price",
                                                   "required":true,
                                                   "attr_value":"699",
                                                   "attr_id":80
                                                },
                                                {
                                                   "attr_name":"Offer_Discount",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_discount",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":81
                                                },
                                                {
                                                   "attr_name":"Offer_Start_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_start_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":82
                                                },
                                                {
                                                   "attr_name":"Offer_End_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_end_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":83
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Net Weight",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"1 Kg",
                                                   "attr_id":84
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Type",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"media/store2/1/category2/5/salmon_steak.jpg",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"Steaks",
                                                   "attr_id":85
                                                },
                                                {
                                                   "attr_name":"About",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB-DEFAULT",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>About: Frozen Fishes Description<br></p>",
                                                   "attr_id":86
                                                },
                                                {
                                                   "attr_name":"What_is_in_your_box",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">What is in your box</span>: Frozen Fishes Description<br></p>",
                                                   "attr_id":87
                                                },
                                                {
                                                   "attr_name":"Sourcing",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p><span style=\"color: rgb(53, 54, 62); font-family: Poppins; font-size: 11px; letter-spacing: 0.5px;\">Sourcing</span>: Frozen Fishes Description<br></p>",
                                                   "attr_id":88
                                                },
                                                {
                                                   "attr_name":"Profile Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL-LEFT",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/128/fruits-avocado (1).png,media/store2/1/product2/128/fruits-avocado (2).png,media/store2/1/product2/128/fruits-avocado (3).png,media/store2/1/product2/128/fruits-banana (1).png",
                                                   "attr_id":89
                                                },
                                                {
                                                   "attr_name":"List Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/129/fruits-coconut (1).png,media/store2/1/product2/129/fruits-guava (1).png,media/store2/1/product2/129/fruits-guava (2).png",
                                                   "attr_id":90
                                                },
                                                {
                                                   "attr_name":"profile video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/130/SampleVideo_1280x720_2mb - Copy.mp4,media/store2/1/product2/130/SampleVideo_1280x720_2mb.mp4",
                                                   "attr_id":91
                                                },
                                                {
                                                   "attr_name":"list video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/131/Plumber Animated Sample Video - MARKATOONS VIDEO PRODUCTION MONTREAL.mp4",
                                                   "attr_id":92
                                                },
                                                {
                                                   "attr_name":"Stock Quantity",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"stock_quantity",
                                                   "required":true,
                                                   "attr_value":"100000",
                                                   "attr_id":93
                                                },
                                                {
                                                   "attr_name":"Apply Delivery Charge",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"delivery_charge",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":95
                                                },
                                                {
                                                   "attr_name":"Is Slashable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"slashable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":96
                                                },
                                                {
                                                   "attr_name":"Is Fixed Price",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"fixed_price",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":97
                                                },
                                                {
                                                   "attr_name":"Charges",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"charges",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":98
                                                },
                                                {
                                                   "attr_name":"Is Watchable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_watchable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":99
                                                },
                                                {
                                                   "attr_name":"Watchable Content",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"watchable_content",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":100
                                                },
                                                {
                                                   "attr_name":"Is a Game",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_a_game",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":101
                                                },
                                                {
                                                   "attr_name":"Game URL",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"game_url",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":102
                                                },
                                                {
                                                   "attr_name":"Is Region Restricted",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_region_restricted",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":103
                                                }
                                             ],
                                             "product_belonging_name":"Frozen",
                                             "per_publishing_form":[

                                             ],
                                             "firstpublishedon":"11/11/2020",
                                             "is_region_restricted":false
                                          }
                                       ]
                                    },
                                    "publisher_name":"THBS",
                                    "publisher_type":3,
                                    "publisher_id":1,
                                    "publisher_rating":5,
                                    "num_users_rated":1
                                 }
                              ]
                           }
                        }
                     ]
                  }
               }
            ],
            "regex_details":[

            ]
         },
         "vendor_details":[
            {
               "id":1,
               "vendor_name":"THBS",
               "vendor_type_ref_id":1,
               "vendor_status":"2",
               "store_id":1,
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:56:59.495861Z",
               "lastUpdated":"2020-11-02T03:56:59.495900Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "onboard_process":"1",
               "applicant_id":null,
               "payment_account_id":null
            }
         ],
         "store_details":[
            {
               "id":1,
               "store_name":"THBS Fisheries",
               "resource_json":"{\"1\": [\"media/store2/1/marine-fishes-2187519.jpeg\", \"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\", \"media/store2/1/cookbook-review-socialtop-image.jpg\"], \"attribute_data\": {\"DisplayVideo\": {\"display_video\": [\"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\"]}, \"DisplayLogo\": {\"display_logo\": [\"media/store2/1/marine-fishes-2187519.jpeg\"]}, \"DisplayImage\": {\"display_image\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"id\", \"attr_type\": \"id\", \"attr_value\": [\"1\"]}, {\"attr_name\": \"context\", \"attr_type\": \"context\", \"attr_value\": [\"dmstore\"]}, {\"attr_name\": \"Ext__DisplayLogo\", \"attr_type\": \"Ext__DisplayLogo\", \"attr_value\": [\"media/store2/1/marine-fishes-2187519.jpeg\"]}, {\"attr_name\": \"Ext__DisplayImage\", \"attr_type\": \"Ext__DisplayImage\", \"attr_value\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}, {\"attr_name\": \"DisplayVideo\", \"attr_type\": \"display_video\", \"attr_value\": [\"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\"]}]}",
               "storeType":"2",
               "store_type_ref_id":1,
               "store_status":"1",
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:38:40.134226Z",
               "lastUpdated":"2021-08-25T13:33:15.246666Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "is_merged":false,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "store_url":"",
               "analytics_view":true,
               "analytics_url":"https://dmdev.digitmarket.com:444/viewdashboard/StoreAdminData?store_id=1",
               "onboard_process":"1",
               "applicant_id":null,
               "store_delivery_slots":"{\"has_delivery_charge\": true, \"delivery_charge\": 49, \"min_order_for_free_delivery\": 499, \"contact_us\": [{\"email\": \"abc@abc.com\", \"isd_code\": \"+91\", \"phone_number\": \"180000000\"}], \"region_restricted\": {\"is_india\": true, \"is_limited\": true, \"pincodes\": [\"560001\", \"560002\", \"560003\", \"560004\", \"560025\", \"560030\", \"560034\", \"560050\", \"560056\", \"560063\", \"560300\"]}, \"max_booking_window\": 3, \"delay_in_booking\": 1, \"store_delivery_slots\": [{\"attribute_name\": \"Parts Of The Day\", \"attribute_type\": \"parts_of_the_day\", \"attribute_value\": [{\"option\": \"Early Morning\", \"start_range\": \"5:00am\", \"end_range\": \"7:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 30, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Morning\", \"start_range\": \"7:00am\", \"end_range\": \"11:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 10, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Mid Day\", \"start_range\": \"11:00am\", \"end_range\": \"1:00pm\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 15, \"max_booking_window\": 5, \"delay_in_booking\": 1}]}, {\"attribute_name\": \"Exclude Dates\", \"attribute_type\": \"exclude_dates\", \"attribute_value\": [{\"option\": \"06/01/2021\"}, {\"option\": \"05/28/2021\"}]}, {\"attribute_name\": \"Exclude Days\", \"attribute_type\": \"exclude_days\", \"attribute_value\": [{\"option\": \"Saturday\"}, {\"option\": \"Sunday\"}]}]}"
            }
         ],
         "category_details":[
            {
               "id":24,
               "category_name":"Frozen",
               "parent_category_id":5,
               "store_id":1,
               "store_admin_id":1,
               "category_type":"1",
               "resource_json":"{\"24\": [\"media/store2/1/category2/24/1.jpg\"], \"attribute_data\": {\"Category Image\": {\"display_image\": [\"media/store2/1/category2/24/1.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"category_id\", \"attr_type\": \"category_id\", \"attr_value\": [\"24\"]}, {\"attr_name\": \"Category Image\", \"attr_type\": \"display_image\", \"attr_value\": [\"media/store2/1/category2/24/1.jpg\"]}]}",
               "category_group_id":null,
               "child_level":2,
               "parent_category_hierarchy":"25",
               "category_status":"1",
               "source":"1"
            }
         ],
         "user_details":[
            {
               "id":2,
               "salutation":"Mr.",
               "first_name":null,
               "last_name":null,
               "company_name":null,
               "contact_display_name":"Arun",
               "contact_email":"vinodagouda_patil@thbs.com",
               "require_password":false,
               "password":null,
               "avatar":"",
               "store_id":1,
               "created_source":"Created",
               "date_of_Joining":"2020-11-02T04:13:44.463392Z",
               "customer_status":"2"
            }
         ]
      },
      {
         "enquiry_id":1,
         "conversation":[
            {
               "message":"When this product will be stock?",
               "datetime":"2020-12-15 17:05:40",
               "user_name":"Arun",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            },
            {
               "message":"Hello can you reply me",
               "datetime":"2020-12-16 15:36:02",
               "user_name":"Arun",
               "sender_type":"user",
               "user_rating":0,
               "message_type":"text"
            }
         ],
         "status":1,
         "created_on":"2020-12-16T10:04:39.374319Z",
         "updated_on":"2021-09-09T06:30:40.847766Z",
         "vendor_converstion_time":null,
         "user_converstion_time":null,
         "user_rating":0,
         "closed_by":null,
         "vendor_feedback":null,
         "user_feedback":null,
         "vendor_rating":0,
         "store_id":1,
         "vendor_id":1,
         "product_id":6,
         "customer_id":2,
         "category_id":24,
         "lastSeen_by_vendor":"2021-09-09 06:30:40.847413",
         "product_belonging_name":"Fishes",
         "product_group_id":16,
         "lastSeen_by_user":"2020-12-16 10:05:41.691567",
         "handle_by":"0",
         "read_by_user":true,
         "read_by_vendor":true,
         "product_details":{
            "facet_info":[

            ],
            "search_result":[
               {
                  "category_id":24,
                  "product_per_category":{
                     "count":1,
                     "product_ids":[
                        6
                     ],
                     "publisher_ids":[
                        "13"
                     ],
                     "product_details":[
                        {
                           "product_id":6,
                           "product_details":{
                              "product_name":"Fresh Fish",
                              "product_id":6,
                              "storeid":1,
                              "product_data":{
                                 "6":[
                                    "media/store2/1/product2/6/6.jpg"
                                 ],
                                 "attribute_data":{
                                    "Product Image":{
                                       "display_image":[
                                          "media/store2/1/product2/6/6.jpg"
                                       ]
                                    }
                                 },
                                 "meta_data":[
                                    {
                                       "attr_name":"product_id",
                                       "attr_type":"product_id",
                                       "attr_value":[
                                          "6"
                                       ]
                                    },
                                    {
                                       "attr_name":"product_name",
                                       "attr_type":"product_name",
                                       "attr_value":"Fresh Fish"
                                    },
                                    {
                                       "attr_name":"Product Image",
                                       "attr_type":"display_image",
                                       "attr_value":[
                                          "media/store2/1/product2/6/6.jpg"
                                       ]
                                    }
                                 ]
                              },
                              "product_type":"1",
                              "product_rating":5,
                              "num_users_rated":1,
                              "bookable_enum_attribute_values":[

                              ],
                              "form":[

                              ]
                           },
                           "publisher_per_product":{
                              "count":1,
                              "publsiher_details":[
                                 {
                                    "publishings_per_publisher":{
                                       "count":1,
                                       "publishings_per_publisher_details":[
                                          {
                                             "per_publishing_product_attribute_values":[
                                                {
                                                   "product_formset_belonging_name":"Default",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"text",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Desc Fishes",
                                                               "attribute_storefront_ui_representation_type":"Short-Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":142,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Short Description",
                                                               "attribute_ui_type":"Text",
                                                               "attribute_value":"Desc Fishes",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"122",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":143,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Price",
                                                               "attribute_ui_type":"Price",
                                                               "attribute_value":"122",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"on_offer",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":144,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"On_Offer",
                                                               "attribute_ui_type":"On_Offer",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_name",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Currently not on offer",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":145,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Name",
                                                               "attribute_ui_type":"Offer_Name",
                                                               "attribute_value":"Currently not on offer",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"122",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":146,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Price",
                                                               "attribute_ui_type":"Offer_Price",
                                                               "attribute_value":"122",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_discount",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":147,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Discount",
                                                               "attribute_ui_type":"Offer_Discount",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_start_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":148,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_Start_Date",
                                                               "attribute_ui_type":"Offer_Start_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"offer_end_date",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":149,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Offer_End_Date",
                                                               "attribute_ui_type":"Offer_End_Date",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL-LEFT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"media/store2/1/product2/155/fruits-pineapple (1).png,media/store2/1/product2/155/fruits-pineapple (2).png,media/store2/1/product2/155/fruits-pineapple (3).png,media/store2/1/product2/155/fruits-pineapple (4).png",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":155,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Profile Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"media/store2/1/product2/155/fruits-pineapple (1).png,media/store2/1/product2/155/fruits-pineapple (2).png,media/store2/1/product2/155/fruits-pineapple (3).png,media/store2/1/product2/155/fruits-pineapple (4).png",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_image",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"media/store2/1/product2/156/fruits-banana (1).png,media/store2/1/product2/156/fruits-banana (2).png,media/store2/1/product2/156/fruits-banana (3).png,media/store2/1/product2/156/fruits-banana (4).png",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":156,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"List Image",
                                                               "attribute_ui_type":"Image-upload",
                                                               "attribute_value":"media/store2/1/product2/156/fruits-banana (1).png,media/store2/1/product2/156/fruits-banana (2).png,media/store2/1/product2/156/fruits-banana (3).png,media/store2/1/product2/156/fruits-banana (4).png",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"media/store2/1/product2/157/SampleVideo_1280x720_2mb - Copy.mp4",
                                                               "attribute_storefront_ui_representation_type":"Profile-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":157,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"profile video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"media/store2/1/product2/157/SampleVideo_1280x720_2mb - Copy.mp4",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"display_video",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"media/store2/1/product2/158/Plumber Animated Sample Video - MARKATOONS VIDEO PRODUCTION MONTREAL.mp4",
                                                               "attribute_storefront_ui_representation_type":"List-Logo",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":158,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"list video",
                                                               "attribute_ui_type":"Video-upload",
                                                               "attribute_value":"media/store2/1/product2/158/Plumber Animated Sample Video - MARKATOONS VIDEO PRODUCTION MONTREAL.mp4",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"stock_quantity",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"100000",
                                                               "attribute_storefront_ui_representation_type":"Inline-Text",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":159,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Stock Quantity",
                                                               "attribute_ui_type":"Stock_quantity",
                                                               "attribute_value":"100000",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"delivery_charge",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":160,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Apply Delivery Charge",
                                                               "attribute_ui_type":"Delivery_Charge",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"slashable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":161,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Slashable",
                                                               "attribute_ui_type":"Slashable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"fixed_price",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":162,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Fixed Price",
                                                               "attribute_ui_type":"Fixed_Price",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"charges",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":163,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Charges",
                                                               "attribute_ui_type":"Charges",
                                                               "attribute_value":"0",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_watchable",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":164,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Watchable",
                                                               "attribute_ui_type":"Is_Watchable",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"watchable_content",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":165,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Watchable Content",
                                                               "attribute_ui_type":"Watchable_Content",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_a_game",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":166,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is a Game",
                                                               "attribute_ui_type":"Is_Game",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"game_url",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"",
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":167,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Game URL",
                                                               "attribute_ui_type":"Game_URL",
                                                               "attribute_value":"",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"is_region_restricted",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"NORMAL",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":null,
                                                               "attribute_storefront_ui_representation_type":"Title",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":168,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Is Region Restricted",
                                                               "attribute_ui_type":"Is_Region_restricted",
                                                               "attribute_value":null,
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Default",
                                                   "product_formset_storefront_ui_name":"Default",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"NORMAL",
                                                   "product_formsetid":1,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Pricing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"0.250 Kg",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":150,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Net Weight",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"0.250 Kg",
                                                               "is_attribute_split_search_enabled":false
                                                            },
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"valued_enum",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"Curry Cut",
                                                               "attribute_storefront_ui_representation_type":"Price",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":151,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Type",
                                                               "attribute_ui_type":"Drop-down",
                                                               "attribute_value":"Curry Cut",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Pricing",
                                                   "product_formset_storefront_ui_name":"Pricing",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":3,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"About",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB-DEFAULT",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>About</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":152,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"About",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>About</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"About",
                                                   "product_formset_storefront_ui_name":"About",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":2,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"What you get",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>What is in box</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":153,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"What_is_in_your_box",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>What is in box</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"What you get",
                                                   "product_formset_storefront_ui_name":"What you get",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":5,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                },
                                                {
                                                   "product_formset_belonging_name":"Sourcing",
                                                   "product_formset_context":"Product",
                                                   "product_form_details":[
                                                      {
                                                         "product_form_id":1,
                                                         "product_form_storefront_ui_name":"Title",
                                                         "product_form_type":"BASIC PRODUCT INFO",
                                                         "product_form_status":"Active",
                                                         "product_form_storefront_ui_position":"NORMAL",
                                                         "product_form_scope":"To All",
                                                         "product_form_name":"Default",
                                                         "product_form_context":"Product",
                                                         "product_form_status_id":1,
                                                         "product_form_attributes":[
                                                            {
                                                               "is_implicit_attribute":false,
                                                               "attribute_type":"description",
                                                               "attribute_split_search_value":"",
                                                               "attribute_storefront_ui_position":"TAB",
                                                               "is_attribute_sensitive":false,
                                                               "attribute_description":"<p>Sourcing</p>",
                                                               "attribute_storefront_ui_representation_type":"Description",
                                                               "is_attribute_mandatory":true,
                                                               "attribute_id":154,
                                                               "does_attribute_add_uniqueness":false,
                                                               "attribute_name":"Sourcing",
                                                               "attribute_ui_type":"Rich-text",
                                                               "attribute_value":"<p>Sourcing</p>",
                                                               "is_attribute_split_search_enabled":false
                                                            }
                                                         ]
                                                      }
                                                   ],
                                                   "product_formset_status":"ACTIVE",
                                                   "is_multi_instance_formset":false,
                                                   "product_formsetname":"Sourcing",
                                                   "product_formset_storefront_ui_name":"Sourcing",
                                                   "product_formset_group_id":16,
                                                   "product_formset_storefront_ui_position":"TAB",
                                                   "product_formsetid":4,
                                                   "product_formset_type":"BASIC PRODUCT INFO",
                                                   "product_formset_scope":"To All",
                                                   "product_formset_status_id":1
                                                }
                                             ],
                                             "product_group_id":16,
                                             "region_restricted_codes":[

                                             ],
                                             "product_attribute_values":[
                                                {
                                                   "attr_name":"Short Description",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"text",
                                                   "required":true,
                                                   "attr_value":"Desc Fishes",
                                                   "attr_id":104
                                                },
                                                {
                                                   "attr_name":"Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"price",
                                                   "required":true,
                                                   "attr_value":"122",
                                                   "attr_id":105
                                                },
                                                {
                                                   "attr_name":"On_Offer",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"on_offer",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":106
                                                },
                                                {
                                                   "attr_name":"Offer_Name",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_name",
                                                   "required":true,
                                                   "attr_value":"Currently not on offer",
                                                   "attr_id":107
                                                },
                                                {
                                                   "attr_name":"Offer_Price",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_price",
                                                   "required":true,
                                                   "attr_value":"122",
                                                   "attr_id":108
                                                },
                                                {
                                                   "attr_name":"Offer_Discount",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_discount",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":109
                                                },
                                                {
                                                   "attr_name":"Offer_Start_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_start_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":110
                                                },
                                                {
                                                   "attr_name":"Offer_End_Date",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"offer_end_date",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":111
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Net Weight",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"0.250 Kg",
                                                   "attr_id":112
                                                },
                                                {
                                                   "attr_start_range":"",
                                                   "attr_name":"Type",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"valued_enum",
                                                   "attr_end_range":"",
                                                   "attr_image_path":"media/store2/1/category2/5/indian-slmon-curry-cut_1.jpg",
                                                   "attr_redirect_url":"",
                                                   "required":true,
                                                   "attr_value":"Curry Cut",
                                                   "attr_id":113
                                                },
                                                {
                                                   "attr_name":"About",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB-DEFAULT",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>About</p>",
                                                   "attr_id":114
                                                },
                                                {
                                                   "attr_name":"What_is_in_your_box",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>What is in box</p>",
                                                   "attr_id":115
                                                },
                                                {
                                                   "attr_name":"Sourcing",
                                                   "per_publishing":false,
                                                   "ui_position":"TAB",
                                                   "attr_type":"description",
                                                   "required":true,
                                                   "attr_value":"<p>Sourcing</p>",
                                                   "attr_id":116
                                                },
                                                {
                                                   "attr_name":"Profile Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL-LEFT",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/155/fruits-pineapple (1).png,media/store2/1/product2/155/fruits-pineapple (2).png,media/store2/1/product2/155/fruits-pineapple (3).png,media/store2/1/product2/155/fruits-pineapple (4).png",
                                                   "attr_id":117
                                                },
                                                {
                                                   "attr_name":"List Image",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_image",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/156/fruits-banana (1).png,media/store2/1/product2/156/fruits-banana (2).png,media/store2/1/product2/156/fruits-banana (3).png,media/store2/1/product2/156/fruits-banana (4).png",
                                                   "attr_id":118
                                                },
                                                {
                                                   "attr_name":"profile video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/157/SampleVideo_1280x720_2mb - Copy.mp4",
                                                   "attr_id":119
                                                },
                                                {
                                                   "attr_name":"list video",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"display_video",
                                                   "required":true,
                                                   "attr_value":"media/store2/1/product2/158/Plumber Animated Sample Video - MARKATOONS VIDEO PRODUCTION MONTREAL.mp4",
                                                   "attr_id":120
                                                },
                                                {
                                                   "attr_name":"Stock Quantity",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"stock_quantity",
                                                   "required":true,
                                                   "attr_value":"100000",
                                                   "attr_id":121
                                                },
                                                {
                                                   "attr_name":"Apply Delivery Charge",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"delivery_charge",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":123
                                                },
                                                {
                                                   "attr_name":"Is Slashable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"slashable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":124
                                                },
                                                {
                                                   "attr_name":"Is Fixed Price",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"fixed_price",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":125
                                                },
                                                {
                                                   "attr_name":"Charges",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"charges",
                                                   "required":true,
                                                   "attr_value":"0",
                                                   "attr_id":126
                                                },
                                                {
                                                   "attr_name":"Is Watchable",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_watchable",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":127
                                                },
                                                {
                                                   "attr_name":"Watchable Content",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"watchable_content",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":128
                                                },
                                                {
                                                   "attr_name":"Is a Game",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_a_game",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":129
                                                },
                                                {
                                                   "attr_name":"Game URL",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"game_url",
                                                   "required":true,
                                                   "attr_value":"",
                                                   "attr_id":130
                                                },
                                                {
                                                   "attr_name":"Is Region Restricted",
                                                   "per_publishing":false,
                                                   "ui_position":"NORMAL",
                                                   "attr_type":"is_region_restricted",
                                                   "required":true,
                                                   "attr_value":null,
                                                   "attr_id":131
                                                }
                                             ],
                                             "product_belonging_name":"Fishes",
                                             "per_publishing_form":[

                                             ],
                                             "firstpublishedon":"11/11/2020",
                                             "is_region_restricted":false
                                          }
                                       ]
                                    },
                                    "publisher_name":"THBS",
                                    "publisher_type":3,
                                    "publisher_id":1,
                                    "publisher_rating":5,
                                    "num_users_rated":1
                                 }
                              ]
                           }
                        }
                     ]
                  }
               }
            ],
            "regex_details":[

            ]
         },
         "vendor_details":[
            {
               "id":1,
               "vendor_name":"THBS",
               "vendor_type_ref_id":1,
               "vendor_status":"2",
               "store_id":1,
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:56:59.495861Z",
               "lastUpdated":"2020-11-02T03:56:59.495900Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "onboard_process":"1",
               "applicant_id":null,
               "payment_account_id":null
            }
         ],
         "store_details":[
            {
               "id":1,
               "store_name":"THBS Fisheries",
               "resource_json":"{\"1\": [\"media/store2/1/marine-fishes-2187519.jpeg\", \"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\", \"media/store2/1/cookbook-review-socialtop-image.jpg\"], \"attribute_data\": {\"DisplayVideo\": {\"display_video\": [\"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\"]}, \"DisplayLogo\": {\"display_logo\": [\"media/store2/1/marine-fishes-2187519.jpeg\"]}, \"DisplayImage\": {\"display_image\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"id\", \"attr_type\": \"id\", \"attr_value\": [\"1\"]}, {\"attr_name\": \"context\", \"attr_type\": \"context\", \"attr_value\": [\"dmstore\"]}, {\"attr_name\": \"Ext__DisplayLogo\", \"attr_type\": \"Ext__DisplayLogo\", \"attr_value\": [\"media/store2/1/marine-fishes-2187519.jpeg\"]}, {\"attr_name\": \"Ext__DisplayImage\", \"attr_type\": \"Ext__DisplayImage\", \"attr_value\": [\"media/store2/1/cookbook-review-socialtop-image.jpg\"]}, {\"attr_name\": \"DisplayVideo\", \"attr_type\": \"display_video\", \"attr_value\": [\"media/store2/1/SampleVideo_1280x720_2mb - Copy.mp4\"]}]}",
               "storeType":"2",
               "store_type_ref_id":1,
               "store_status":"1",
               "createdBy_id":1,
               "createdDate":"2020-11-02T03:38:40.134226Z",
               "lastUpdated":"2021-08-25T13:33:15.246666Z",
               "ratings":5,
               "num_users_rated":1,
               "onboard":false,
               "onboard_status":null,
               "tos":null,
               "policy":null,
               "is_merged":false,
               "trg_journey_status":null,
               "trg_journey_id":null,
               "user_type_id":null,
               "store_url":"",
               "analytics_view":true,
               "analytics_url":"https://dmdev.digitmarket.com:444/viewdashboard/StoreAdminData?store_id=1",
               "onboard_process":"1",
               "applicant_id":null,
               "store_delivery_slots":"{\"has_delivery_charge\": true, \"delivery_charge\": 49, \"min_order_for_free_delivery\": 499, \"contact_us\": [{\"email\": \"abc@abc.com\", \"isd_code\": \"+91\", \"phone_number\": \"180000000\"}], \"region_restricted\": {\"is_india\": true, \"is_limited\": true, \"pincodes\": [\"560001\", \"560002\", \"560003\", \"560004\", \"560025\", \"560030\", \"560034\", \"560050\", \"560056\", \"560063\", \"560300\"]}, \"max_booking_window\": 3, \"delay_in_booking\": 1, \"store_delivery_slots\": [{\"attribute_name\": \"Parts Of The Day\", \"attribute_type\": \"parts_of_the_day\", \"attribute_value\": [{\"option\": \"Early Morning\", \"start_range\": \"5:00am\", \"end_range\": \"7:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 30, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Morning\", \"start_range\": \"7:00am\", \"end_range\": \"11:00am\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 10, \"max_booking_window\": 5, \"delay_in_booking\": 1}, {\"option\": \"Mid Day\", \"start_range\": \"11:00am\", \"end_range\": \"1:00pm\", \"num_booking_per_slot\": 5, \"slots_duration_in_mins\": 15, \"max_booking_window\": 5, \"delay_in_booking\": 1}]}, {\"attribute_name\": \"Exclude Dates\", \"attribute_type\": \"exclude_dates\", \"attribute_value\": [{\"option\": \"06/01/2021\"}, {\"option\": \"05/28/2021\"}]}, {\"attribute_name\": \"Exclude Days\", \"attribute_type\": \"exclude_days\", \"attribute_value\": [{\"option\": \"Saturday\"}, {\"option\": \"Sunday\"}]}]}"
            }
         ],
         "category_details":[
            {
               "id":24,
               "category_name":"Frozen",
               "parent_category_id":5,
               "store_id":1,
               "store_admin_id":1,
               "category_type":"1",
               "resource_json":"{\"24\": [\"media/store2/1/category2/24/1.jpg\"], \"attribute_data\": {\"Category Image\": {\"display_image\": [\"media/store2/1/category2/24/1.jpg\"]}}, \"meta_data\": [{\"attr_name\": \"category_id\", \"attr_type\": \"category_id\", \"attr_value\": [\"24\"]}, {\"attr_name\": \"Category Image\", \"attr_type\": \"display_image\", \"attr_value\": [\"media/store2/1/category2/24/1.jpg\"]}]}",
               "category_group_id":null,
               "child_level":2,
               "parent_category_hierarchy":"25",
               "category_status":"1",
               "source":"1"
            }
         ],
         "user_details":[
            {
               "id":2,
               "salutation":"Mr.",
               "first_name":null,
               "last_name":null,
               "company_name":null,
               "contact_display_name":"Arun",
               "contact_email":"vinodagouda_patil@thbs.com",
               "require_password":false,
               "password":null,
               "avatar":"",
               "store_id":1,
               "created_source":"Created",
               "date_of_Joining":"2020-11-02T04:13:44.463392Z",
               "customer_status":"2"
            }
         ]
      }
   ]
}

3.1.15.3. Update Enquiry

This API is used to edit or update the enquiry message.

POST   update_enquiry

Resource URI

<base URL> /enquiry/update_enquiry

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
enquiry_id integer yes id of the equiry
user_type array of string yes displays the type of the user. The available options are customer and vendor
user_id integer yes displays the user id
category_id integer yes id of the category. Use Create Category api to get the category id
vendor_id integer yes id of the vendor. Use Vendor Save api to get the vendor id
product_id integer yes id of the product. Use Create Product api to get the product id
store_id integer yes id of the store. Use Store Save api to get the store id
product_group_id integer yes displays the product group id
message sender_type array of string yes displays sender type. The available options are customer and vendor
user_name string yes displays the username with the min. length of 1
message_type string yes displays the type of the message with length of 1
message string yes displays the message with min. length 1

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL>/enquiry/update_enquiry

Example Body

{
 "category_id":10,
 "enquiry_id":3,
 "vendor_id":1,
 "product_id":1,
 "user_type":"vendor",
 "user_id":"1",
 "store_id":2,
 "product_group_id":31,
 "message":[
    {
       "message":"Hi",
       "user_name":"raghu",
       "sender_type":"customer",
       "message_type":"text"
    },
    {
       "user_name":"Torry Harris",
       "message":"hello",
       "datetime":"2021-09-03T05:42:48.445Z",
       "sender_type":"vendor",
       "vendor_rating":5,
       "message_type":"text"
    }
 ]
}

  **Example Response**
{
   "message": "Enquiry Updated Successfully"
}

Update Enquiry Lastseen

This API is used to update the last seen time of the enquiry message.

POST   update_enquiry_lastseen

Resource URI

<base URL> /enquiry/update_enquiry_lastseen

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
enquiry_id integer yes id of the equiry
user_type array of string yes displays the type of the user. The available options are customer and vendor

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> /enquiry/update_enquiry_lastseen

Example Body

{
 "enquiry_id":1,
 "user_type":"customer"
}

  **Example Response**
{
 "message": "customer Last Seen Updated Successfully"
}

3.1.15.4. Close Enquiry

This API is used to close the enquiry, once it is answered.

POST   close_enquiry

Resource URI

<base URL> /enquiry/close_enquiry

Resource Information

Method POST
Accepted Response formats JSON
Requires Authentication Yes

Resource Properties

Parameter Data Type Mandatory Description
enquiry_id integer yes id of the equiry
user_type array of string yes displays the type of the user. The available options are customer and vendor

Error Codes

400, 401, 404, 500

Error Scenarios

Error Code Error Message Error Reason
400 Store does not exist when you try to get a response without entering the details
401 unauthorized lacks authentication credentials
404 page not found content may be removed or moved
500 internal server error failing from client serverside

Example Request

<base URL> /enquiry/close_enquiry

Example Body

{
 "enquiry_id":1,
 "user_type":"vendor"
}

  **Example Response**
{
 "message": "Enquiry Closed by Vendor"
}