Wall view post

Brief description:

  • Retrieve user wall posts via API – fetch updates, comments, and activity feeds with seamless integration and real-time data.

Endpoint

Method:

  • POST / GET

Parameter:

Parameter name Required Type Explain
api_key_token Yes string Your API key
post_guid Yes integer A wall post ID
guid Yes Integer User ID who is viewing the wall post

Example Response

{
    "merchant": "Open Source Social Network",
    "url": "http:\/\/www.mywebsite.com\/",
    "time_token": 1569253877,
    "payload": {
        "post": {
            "data": {},
            "guid": "113",
            "time_created": "1569253135",
            "owner_guid": "1",
            "description": "{\"post\":\"Hello How are you\"}",
            "title": "",
            "type": "user",
            "subtype": "wall",
            "poster_guid": "1",
            "access": "3",
            "time_updated": "0",
            "total_likes": 0,
            "is_liked_by_user": false
        },
        "friends": [],
        "text": "Hello How are you",
        "location": "",
        "user": {
            "guid": "1",
            "first_name": "System",
            "last_name": "Administrator",
            "fullname": "System Administrator",
            ...
            ...
            ...
        },
        "image": ""
    },
    "code": "100",
    "message": "Request successfully executed"
}

Return payload parameter description

  • If no post then payload will return false otherwise it wil return object|array

Remark

  • If the request succeed you should get the code 100 besides the payload.
  • If you have any question you may create start a new topic on community.

Services View All