Accounts > Public Profile


View-Detail

GET : /api/designnest/v1/accounts/public/profiles

Routing parameters

# Param Type Explain
1 search string
2 page int default page = 1
2 country_id int default country_id = 0

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "list" : [
            "has_more_page" : 0 / 1
            "data" : [
                [
                    "id": 0 ,
                    "url": url ,
                    "name": "" ,
                    "job": "" ,
                    "country": "",
                ] ,
                ...
            ]
        ]
    ]
}

View-Detail

GET : /api/designnest/v1/accounts/public/profiles/{alias}

alias : alias or account id

Routing parameters

# Param Type Explain
1 category int
2 account_id int
3 project_type int all:0 ; starred:6 ; funding:1 ; coming soon:3 ; available:4 ; showcase:5
4 order_field string collect_count / price / started_time / pcs
5 order_by string asc/desc (default >> asc)
6 search string
7 page int default page = 1

Response :

{
    "code" : 1 ,
    "message" : "" ,
    "data" : [
        "detail": {
            "banner": "",
            "picture": "",
            "name": "",
            "job": "",
            "location": "",
            "school": "",
            "links": [] ,
            "links_group" : [
                {
                    "type" : 0 ,
                    "url"  : url
                } , 
                ...
            ]
            "about_me": "",
            "show_email": 0,
            "show_profile": 0,
            "email": "",
        },
        "list" : [
            [
                "id": 0,
                "type": "",
                "image": "",
                "title": "",
                "price": "",
                "progress": 0
            ] ,
            ...
        ]
    ]
}