Getting 500 response and JAVA FDKServerResponseError while creating store using platformclient

We are using platformcleint to create stores in company id 4 using Java FDK.
We are getting below error logs and a 500 response from Fynd server.

com.sdk.common.model.FDKServerResponseError: HTTP responseCode: 500 responseBody :Internal Server Error
	at com.sdk.platform.companyprofile.CompanyProfilePlatformService.createLocation(CompanyProfilePlatformService.java:588)
	at com.fynd.cbsExtn.service.FyndService.createStore(FyndService.java:36)
	at com.fynd.cbsExtn.controller.StoreController.createSeller(StoreController.java:37)

Below is the request object on Json format.

{"code":"3PPC2PSAFC01","contactNumbers":[{"countryCode":91,"number":"9879699128"}],"name":"URBANWAND MARKETING \u0026 TECHNOLOGY SERVICES PRIVATE LIMITED","address":{"pincode":421303,"longitude":77.59,"country":"India","address2":"","state":"MAHARASHTRA","address1":"617, vani vilas, Gandhi Nagar, basaveshwar nagar","city":"Thane","latitude":12.97},"company":4,"timing":[{"open":true,"weekday":"monday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"tuesday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"wednesday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"saturday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"sunday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":false,"weekday":"thursday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":false,"weekday":"friday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}}],"displayName":"URBANWAND MARKETING \u0026 TECHNOLOGY SERVICES PRIVATE LIMITED","notificationEmails":["guru@gmail.com"],"tags":["3P","SMART","INFIBEAM","3P","GROCERIES","FASHION","HOMEANDKITCHEN"],"orderAcceptanceTiming":[{"open":true,"weekday":"monday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"tuesday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"wednesday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"saturday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":true,"weekday":"sunday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":false,"weekday":"thursday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}},{"open":false,"weekday":"friday","opening":{"hour":9,"minute":30},"closing":{"hour":19,"minute":0}}]}

@kedar2a and @kevinfynd please help here.

Hi @DanishAmin

Could you please try using the correct parameters and values in the request body object?
Sample request body payload in json format

{
          "name": "Saga Fash Products",
          "displayName": "Saga Fash Products",
          "code": "MSG49",
          "storeType": "high_street",
          "notificationEmails": [
            
          ],
          "manager": {
            "name": "Abc",
            "email": "abc@gofynd.com",
            "mobileNo": {
              "number": "1234567890",
              "countryCode": "+91"
            }
          },
          "documents": [
            
          ],
          "warnings": {
            
          },
          "address": {
            "pincode": 752069,
            "city": "abc",
            "state": "Odisha",
            "address1": "A-195",
            "country": "India",
            "countryCode": "IN",
            "latitude": 19.0653252,
            "longitude": 72.8423802
          },
          "contactNumbers": [
            {
              "number": "1234567890",
              "countryCode": "+91"
            }
          ],
          "company": "4624",
          "timing": [
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "monday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "tuesday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "wednesday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "thursday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "friday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "saturday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "sunday"
            }
          ],
          "defaultOrderAcceptanceTiming": true,
          "tags": [
            
          ],
          "orderAcceptanceTiming": [
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "monday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "tuesday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "wednesday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "thursday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "friday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "saturday"
            },
            {
              "opening": {
                "hour": 11,
                "minute": 0
              },
              "closing": {
                "hour": 22,
                "minute": 0
              },
              "open": true,
              "weekday": "sunday"
            }
          ],
          "autoAssignCourierPartner": true,
          "productReturnConfig": {
            "onSameStore": true
          },
          "gstCredentials": {
            "eInvoice": {
              "enabled": false
            },
            "eWaybill": {
              "enabled": false
            }
          },
          "holiday": [
            
          ],
          "creditNote": false,
          "autoInvoice": false,
          "bulkShipment": false,
          "avgOrderProcessingTime": {
            "duration": 0,
            "durationType": "hours"
          }
        }

Hi @SoumyaAcharya I tried using this value.

{
  "code": "3PPC2PSAFC01",
  "gst_credentials": {
    "e_invoice": {
      "username": "",
      "enabled": false,
      "password": ""
    },
    "e_waybill": {
      "username": "",
      "enabled": false,
      "password": ""
    }
  },
  "contact_numbers": [
    {
      "country_code": 91,
      "number": "9879699128"
    }
  ],
  "name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
  "address": {
    "country_code": "IN",
    "pincode": 752025,
    "longitude": 77.59,
    "country": "India",
    "address2": "",
    "state": "Odisha",
    "address1": "A-195",
    "city": "Sinduria",
    "latitude": 12.97
  },
  "company": 4,
  "manager": {
    "email": "guru@gmail.com",
    "mobile_no": {
      "country_code": 91,
      "number": "9879699128"
    },
    "name": "guru"
  },
  "auto_invoice": false,
  "timing": [
    {
      "open": true,
      "weekday": "monday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "tuesday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "wednesday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "saturday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "sunday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": false,
      "weekday": "thursday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": false,
      "weekday": "friday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    }
  ],
  "documents": [
    {
      "value": "27AAACN2084L1ZA",
      "legal_name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
      "verified": true,
      "type": "gst",
      "url": ""
    }
  ],
  "credit_note": false,
  "holiday": [
    {
      "date": {
        "end_date": "2023-04-04T23:59:59.999Z",
        "start_date": "2023-04-04T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-06-25T23:59:59.999Z",
        "start_date": "2023-06-25T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-10-30T23:59:59.999Z",
        "start_date": "2023-10-30T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-12-20T23:59:59.999Z",
        "start_date": "2023-12-20T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-12-29T23:59:59.999Z",
        "start_date": "2023-12-29T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-12-30T23:59:59.999Z",
        "start_date": "2023-12-30T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2023-12-31T23:59:59.999Z",
        "start_date": "2023-12-31T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-01T23:59:59.999Z",
        "start_date": "2024-01-01T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-02T23:59:59.999Z",
        "start_date": "2024-01-02T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-03T23:59:59.999Z",
        "start_date": "2024-01-03T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-04T23:59:59.999Z",
        "start_date": "2024-01-04T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-07T23:59:59.999Z",
        "start_date": "2024-01-07T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-08T23:59:59.999Z",
        "start_date": "2024-01-08T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-17T23:59:59.999Z",
        "start_date": "2024-01-17T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-18T23:59:59.999Z",
        "start_date": "2024-01-18T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-19T23:59:59.999Z",
        "start_date": "2024-01-19T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-20T23:59:59.999Z",
        "start_date": "2024-01-20T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-21T23:59:59.999Z",
        "start_date": "2024-01-21T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-22T23:59:59.999Z",
        "start_date": "2024-01-22T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-23T23:59:59.999Z",
        "start_date": "2024-01-23T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-24T23:59:59.999Z",
        "start_date": "2024-01-24T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-25T23:59:59.999Z",
        "start_date": "2024-01-25T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-26T23:59:59.999Z",
        "start_date": "2024-01-26T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-27T23:59:59.999Z",
        "start_date": "2024-01-27T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-28T23:59:59.999Z",
        "start_date": "2024-01-28T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-29T23:59:59.999Z",
        "start_date": "2024-01-29T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-30T23:59:59.999Z",
        "start_date": "2024-01-30T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    },
    {
      "date": {
        "end_date": "2024-01-31T23:59:59.999Z",
        "start_date": "2024-01-31T00:00:00.000Z"
      },
      "title": "HOLIDAY",
      "holiday_type": "custom"
    }
  ],
  "product_return_config": {
    "on_same_store": true
  },
  "display_name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
  "notification_emails": [
    "guru@gmail.com"
  ],
  "tags": [
    "3P",
    "SMART",
    "INFIBEAM",
    "3P",
    "GROCERIES",
    "FASHION",
    "HOMEANDKITCHEN"
  ],
  "default_order_acceptance_timing": true,
  "order_acceptance_timing": [
    {
      "open": true,
      "weekday": "monday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "tuesday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "wednesday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "saturday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": true,
      "weekday": "sunday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": false,
      "weekday": "thursday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    },
    {
      "open": false,
      "weekday": "friday",
      "opening": {
        "hour": 9,
        "minute": 30
      },
      "closing": {
        "hour": 19,
        "minute": 0
      }
    }
  ],
  "avg_order_processing_time": {
    "duration": 24,
    "duration_type": "hours"
  },
  "bulk_shipment": false
}

But now I am getting this error.

com.sdk.common.model.FDKServerResponseError: HTTP responseCode: 400 responseBody :{"message":"Stormbreaker: Address invalid for IN","error":{"errors":{"success":false,"error":{"type":"Data Error","value":null,"message":"Address key: city is invalid with value : SINDURIA"}}}}

The city is correct with actual pincode and state values.

Hi @DanishAmin

Can you please try with this payload ?

{
            "code": "3PPC2PSAFC01",
            "gst_credentials": {
              "e_invoice": {
                "username": "",
                "enabled": false,
                "password": ""
              },
              "e_waybill": {
                "username": "",
                "enabled": false,
                "password": ""
              }
            },
            "contact_numbers": [
              {
                "country_code": 91,
                "number": "9879699128"
              }
            ],
            "name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
            "address": {
              "country_code": "IN",
              "pincode": 752025,
              "longitude": 77.59,
              "country": "India",
              "address2": "",
              "state": "Odisha",
              "address1": "A-195",
              "city": "Nayagarh",
              "latitude": 12.97
            },
            "company": 4,
            "manager": {
              "email": "guru@gmail.com",
              "mobile_no": {
                "country_code": 91,
                "number": "9879699128"
              },
              "name": "guru"
            },
            "auto_invoice": false,
            "timing": [
              {
                "open": true,
                "weekday": "monday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "tuesday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "wednesday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "saturday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "sunday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": false,
                "weekday": "thursday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": false,
                "weekday": "friday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              }
            ],
            "documents": [
              {
                "value": "27AAACN2084L1ZA",
                "legal_name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
                "verified": true,
                "type": "gst",
                "url": ""
              }
            ],
            "credit_note": false,
            "holiday": [
              {
                "date": {
                  "end_date": "2023-04-04T23:59:59.999Z",
                  "start_date": "2023-04-04T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-06-25T23:59:59.999Z",
                  "start_date": "2023-06-25T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-10-30T23:59:59.999Z",
                  "start_date": "2023-10-30T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-12-20T23:59:59.999Z",
                  "start_date": "2023-12-20T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-12-29T23:59:59.999Z",
                  "start_date": "2023-12-29T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-12-30T23:59:59.999Z",
                  "start_date": "2023-12-30T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2023-12-31T23:59:59.999Z",
                  "start_date": "2023-12-31T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-01T23:59:59.999Z",
                  "start_date": "2024-01-01T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-02T23:59:59.999Z",
                  "start_date": "2024-01-02T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-03T23:59:59.999Z",
                  "start_date": "2024-01-03T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-04T23:59:59.999Z",
                  "start_date": "2024-01-04T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-07T23:59:59.999Z",
                  "start_date": "2024-01-07T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-08T23:59:59.999Z",
                  "start_date": "2024-01-08T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-17T23:59:59.999Z",
                  "start_date": "2024-01-17T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-18T23:59:59.999Z",
                  "start_date": "2024-01-18T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-19T23:59:59.999Z",
                  "start_date": "2024-01-19T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-20T23:59:59.999Z",
                  "start_date": "2024-01-20T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-21T23:59:59.999Z",
                  "start_date": "2024-01-21T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-22T23:59:59.999Z",
                  "start_date": "2024-01-22T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-23T23:59:59.999Z",
                  "start_date": "2024-01-23T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-24T23:59:59.999Z",
                  "start_date": "2024-01-24T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-25T23:59:59.999Z",
                  "start_date": "2024-01-25T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-26T23:59:59.999Z",
                  "start_date": "2024-01-26T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-27T23:59:59.999Z",
                  "start_date": "2024-01-27T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-28T23:59:59.999Z",
                  "start_date": "2024-01-28T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-29T23:59:59.999Z",
                  "start_date": "2024-01-29T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-30T23:59:59.999Z",
                  "start_date": "2024-01-30T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              },
              {
                "date": {
                  "end_date": "2024-01-31T23:59:59.999Z",
                  "start_date": "2024-01-31T00:00:00.000Z"
                },
                "title": "HOLIDAY",
                "holiday_type": "custom"
              }
            ],
            "product_return_config": {
              "on_same_store": true
            },
            "display_name": "URBANWAND MARKETING & TECHNOLOGY SERVICES PRIVATE LIMITED",
            "notification_emails": [
              "guru@gmail.com"
            ],
            "tags": [
              "3P",
              "SMART",
              "INFIBEAM",
              "3P",
              "GROCERIES",
              "FASHION",
              "HOMEANDKITCHEN"
            ],
            "default_order_acceptance_timing": true,
            "order_acceptance_timing": [
              {
                "open": true,
                "weekday": "monday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "tuesday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "wednesday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "saturday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": true,
                "weekday": "sunday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": false,
                "weekday": "thursday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              },
              {
                "open": false,
                "weekday": "friday",
                "opening": {
                  "hour": 9,
                  "minute": 30
                },
                "closing": {
                  "hour": 19,
                  "minute": 0
                }
              }
            ],
            "avg_order_processing_time": {
              "duration": 24,
              "duration_type": "hours"
            },
            "bulk_shipment": false
          }