I need help to fetch JSON from RESTfull API.
This is my Response
"variation_details": [
{
"variation_title": "Black Color",
"specifications": "Diamond Cut",
"image": [
"/uploads/variation-img0-0-Redmi J812127868.jpg"
],
"quantity": 10,
"price": 20000
}
],
how can i remove [] this. from response because i need to display image in view Pager
This is how i get From response http://devapi.dicatto.com[/uploads/variation-img0-0-Redmi J812127868.jpg]
this is my full response
{
"code": true,
"success": "Records fetched successfully",
"result": {
"name": "Redmi J812127868",
"main_category": "5cde6e836340c5659e5c6992",
"sub_category": "5cde6f199aed456592c98f98",
"brand": "5cdeab466340c5659e5c69bd",
"model": "PROD771100",
"currency": "Rs",
"mrp_price": 18000,
"retailer_price": 17000,
"quantity": 30,
"available_quantity": null,
"avg_ratings": null,
"description": null,
"performance": null,
"other_infomation": null,
"product_description": "Test1234",
"specifications": "<p>RAM-4 </p>\n",
"features": [
{
"title": "RAM:4 GB,Memory:64 GB",
"description": "Test",
"image": "/uploads/feature-img0-Redmi J812127868.jpg"
}
],
"warranty": "12 Months",
"replacement": "Screen",
"same_day_delivery": null,
"discounted_amount": 2000,
"cash_on_delivery": null,
"manufacturing_details": "Test1232",
"importer_details": "Mumbai Test1232",
"packers_details": "Test123",
"offers": null,
"highlights": "Mumbai",
"more_info": null,
"keywords": null,
"manufacturer": null,
"variation_theme": "color",
"variation_details": [
{
"variation_title": "Black Color",
"specifications": "Diamond Cut",
"image": [
"/uploads/variation-img0-0-Redmi J812127868.jpg"
],
"quantity": 10,
"price": 20000
}
],
"__v": 0
}
}
The response change when multiple image come
"variation_details": [
{
"variation_title": "Black Color",
"specifications": "Diamond Cut",
"image": [
"/uploads/variation-img0-0-Redmi J812127868.jpg",
"/uploads/variation-img0-1-Redmi J812127868.jpg"
],
"quantity": 10,
"price": 20000
}
],
[]represent list of items. So if you dont need list then just define one instance of details/image.