Accounts > Projects

View-List

GET : /api/designnest/v1/accounts/me/projects?page={page}&chunk_type={chunk_type}

page : current page , default page = 1

chunk_type : chunk_type = 0 > draft chunk_type = 1 > live

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "list" : [
            "draft" : [
                "has_more_page" : 0 / 1 ,
                "data" : [
                    {
                        "id" => 0 ,
                        "type" => 0 ,
                        "image" => '' ,
                        "title" => '' ,
                        "price" => '' ,
                        "progress" => 0
                    } ,
                    ...
                ] ,
            ] ,
            "live"  : [
                "has_more_page" : 0 / 1 ,
                "data" : [
                    {
                        "id" => 0 ,
                        "type" => 0 ,
                        "image" => '' ,
                        "title" => '' ,
                        "price" => '' ,
                        "progress" => 0
                    } ,
                    ...
                ] ,
            ]
        ]
    ]
}