Accounts > Visuals

View-List

GET : /api/designnest/v1/accounts/me/visuals

Routing parameters

# Param Type Explain
1 page int default page = 1

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "list" : [
            [
                "id" => 0 ,
                "project_id" => 0 ,
                "image" => '' ,
                "title" => '' ,
                "location" => '' ,
            ] ,
            ...
        ]
    ]
}

View-Detail

GET : /api/designnest/v1/accounts/me/visuals/{visualID}

visualID : current visualID

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "detail" : [
            'id' => 0 ,
            'account_image' => '' ,
            'account_name'  => '' ,
            'location' => '' ,
            'title'    => '' ,
            'content'  => '' ,
            'created_time' => '' ,
            'image' => ''
        ]
    ]
}