Projects > Technical Specs

View-List

GET : /api/designnest/v1/projects/{projectID}/products/{productID}/technical_spaces

projectID : current project id

productID : current product id ( default = 0 >> get all)

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "list" : [
            {
                "id": 0,
                "title": "",
                "image": "" ,
                "manual" : "" ,
                "specs": [
                    {
                        "type": "",
                        "value": ""
                    },
                    ...
                ]
            }
            ...
        ]
    ]
}