API Name getCommunityList
API Description Get Community List (Storyboard 18)
Request URL http://app.madepf.com/api/v1/community/getCommunityList
Method Type GET
Result Code
0 Success -3 JWT Token expired
-1 Invalid request error -4 Param Error
-2 JWT Token Empty Error
Request Param
Name Type Necessary Description
page_num int Page Number(1~)
mine int Mine Flag(1: Mine, 0: All)
type string Community Type((N: Notice, S: Find Site, W: Find Worker-Find Job, R: Report, null: All)
column string Search Column (f_title, f_content, f_title_content, f_site_name, f_phone)
keyword string Search Keyword
Response Data
Name Type Description
code Integer Response Result Code
msg String Response Result Message
data Json
{
    "total": "Int : total item count",
    "limit": "Int : One page item count",
    "page_count": "Int : Page Count",
    "list": [
        {
            "f_idx": "Int : Community ID",
            "f_reg_time": "String : Reg Time",
            "f_user_idx": "Int : User ID",
            "f_type": "String : Type(N: Notice, S: Find Site, W: Find Worker/Find Job, R: Report)",
            "f_title": "String : Title",
            "f_content": "String : Content",
            "f_phone": "String : Phone Number",
            "f_push": "String : Push Flag(Y,N)",
            "f_made": "String : Made Flag(Y,N)",
            "f_image_url": "String : Image Url",
            "f_read": "String : Read Flag(Y,N)"
        }
    ]
}
Response