1. Post
Networked API Documentation
  • Getting Started
  • User Authentication
    • Add New Users to Community
      POST
    • Send email invites
      POST
  • User Profile
    • User Profile
      GET
    • Profile Visits
      GET
  • Community
    • Features
      • Feature List
    • Directory
      • Users List
      • Roles List
    • Monetization
      • Plans
        • Plans List
    • Feed
      • Polls
        • Create Polls
      • Surveys
        • Create Surveys
      • Post
        • Ask and offer help
          • Post Intro
          • Post Advice
          • Post Recommendation
          • Post Kudos
          • Post Help
        • Feed Post List
          GET
        • Post to Feed
          POST
        • Get Post Comments
          GET
        • Add Comments to Post
          POST
      • upload Media
        POST
    • Opportunities
      • Company and Services
        • Company and Services List
      • Fundaising Initiatives
        • Fundraising Initiatives List
      • Career Opportunities
        • Career Opportunities
    • Events
      • Event Post
      • Edit Events
      • Delete Event
      • Event List
    • Media Center
      • Get Resources
    • Analytics
      • Community Analytics
    • Newsletter
      • Lists
        • Get newsletter subscriber lists
      • Add newsletter subscribers
      • Get newsletter subscribers
    • Community Details
      GET
    • Spaces List
      GET
  • Webhooks
    • User Webhooks
      • user.joined
      • user.profile.updated
      • user.joined.space
    • Feed Webhooks
      • post.created
      • post.liked
      • post.unliked
      • comment.added
      • post.reported
  • References
    • Response Codes
    • Model Status
    • Post Types
  1. Post

Feed Post List

GET
https://backend.networked.co/api/v1/posts

🗳️ Feed Posts#

Description#

This API fetches a list of poll-type posts for the authenticated user in a specific community. The response includes post metadata, user information, poll data, and interaction counts such as likes, comments, and shares.
HTTP Method: GET
Endpoint: api/v1/posts?start=0&count=10&postType=0

Request Details#

Headers#

KeyTypeRequiredDescription
x-api-keystringYesAPI key provided by the Networked Team or generated via the Platform.
SpaceIdstringNoIf feed from any specific space is needed , by default commuity feed will be fetched.

Body Parameters#

This is a GET request. All parameters are passed via query string.
ParameterTypeRequiredDescription
startnumberYesStarting index of the post list (for pagination).
countnumberYesNumber of posts to retrieve.
postTypenumberYesType of post to fetch (e.g., 0 for Poll posts).

Sample Response#

{
  "data": {
    "count": 10,
    "start": 0,
    "contents": [
      {
        "user": {
          "id": "6787893423126f0012a92ed6",
          "name": "Spencer Johnson Spencer",
          "email": "gupta.sahu@networked.co",
          "title": " Software Development Test Engineer WBC Community Test Engineer",
          "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image (25).png",
          "role": "Admin"
        },
        "metadata": {
          "ogTitle": "New Poll: In the ICABA World community community on Networked.",
          "ogDescription": "Test",
          "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
        },
        "postId": "683836d6a0c86500126abe07",
        "postType": "Poll",
        "isOwner": false,
        "timeStamp": 1748514518452,
        "polls": {
          "pollId": "683836d6a0c86500126abe09",
          "pollCreator": {
            "id": "6787893423126f0012a92ed6",
            "name": "Spencer Johnson Spencer",
            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image (25).png",
            "designation": " Software Development Test Engineer WBC Community Test Engineer"
          },
          "headText": "Test",
          "options": [
            { "index": 0, "text": "yes " },
            { "index": 1, "text": "no" }
          ],
          "userAnswer": -1,
          "startTime": 1748514481000,
          "endTime": 1748968441000,
          "timeStamp": 1748514518482,
          "status": 1,
          "totalVote": 1
        },
        "likesCount": 0,
        "commentCount": 0,
        "shareCount": 0,
        "selfLike": false,
        "status": 1,
        "likes": {
          "likeCount": 0
        }
      }
    ]
  }
}

Response Interface#


Response Field Descriptions#

KeyTypeDescription
data.countnumberTotal number of posts returned in this request.
data.startnumberOffset used for pagination.
data.contentsarrayArray of posts.
data.contents[].userobjectUser who posted the poll.
data.contents[].metadataobjectMetadata like OG title, description, and image.
data.contents[].postIdstringUnique identifier of the post.
data.contents[].postTypestringType of the post (e.g., Poll).
data.contents[].isOwnerbooleanIndicates if the current user owns this post.
data.contents[].timeStampnumberUnix timestamp when the post was created.
data.contents[].pollsobjectPoll details including question, options, and votes.
data.contents[].likesCountnumberTotal number of likes.
data.contents[].commentCountnumberTotal number of comments.
data.contents[].shareCountnumberTotal number of shares.
data.contents[].selfLikebooleanIndicates whether the current user has liked the post.
data.contents[].likes.likeCountnumberAlias for total likes.

Reference#

🔗 Response Codes

Notes#

Ensure x-api-key is present in all requests to successfully authenticate and authorize.
Use start and count for paginating through the list of posts.

Request

Query Params

Header Params

Responses

🟢200
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://backend.networked.co/api/v1/posts?start=0&count=10&postType=0' \
--header 'x-api-key: <your-api-key>'
Response Response Example
{
    "data": {
        "count": 10,
        "start": 0,
        "contents": [
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "metadata": {
                    "ogTitle": "New Poll: In the ICABA World community community on Networked.",
                    "ogDescription": "Test",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "683836d6a0c86500126abe07",
                "postType": "Poll",
                "isOwner": false,
                "timeStamp": 1748514518452,
                "polls": {
                    "pollId": "683836d6a0c86500126abe09",
                    "pollCreator": {
                        "id": "6787893423126f0012a92ed6",
                        "name": "Spencer Johnson Spencer",
                        "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                        "designation": " Software Development Test Engineer WBC Community Test Engineer"
                    },
                    "headText": "Test",
                    "options": [
                        {
                            "index": 0,
                            "text": "yes "
                        },
                        {
                            "index": 1,
                            "text": "no"
                        }
                    ],
                    "userAnswer": -1,
                    "startTime": 1748514481000,
                    "endTime": 1748968441000,
                    "timeStamp": 1748514518482,
                    "status": 1,
                    "totalVote": 1
                },
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {},
                "metadata": {
                    "ogTitle": "New Update: In the ICABA World community community on Networked.",
                    "ogDescription": "Here is my new Post",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "6834709d26761c00120a92b3",
                "postType": "Post",
                "isOwner": false,
                "timeStamp": 1748267164991,
                "content": "<p style=\"\">Here is my new Post</p>",
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "richText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"Here is my new Post\"}]}]",
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {
                    "shareType": "Fundraising",
                    "fundraising": {
                        "user": {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                            "title": " Software Development Test Engineer WBC Community Test Engineer",
                            "primaryCompany": "test",
                            "location": "",
                            "industries": [
                                "Animation"
                            ],
                            "role": "Admin"
                        },
                        "fundingDetails": {
                            "id": "682fc8f10465d1001250c486",
                            "fundraisingType": {
                                "id": "5349b4ddd2781d06f0000001",
                                "name": "Association",
                                "description": "An association is a group or organization to which you may be united for a common interest or goal"
                            },
                            "companyName": "xcxzc",
                            "companyAbout": "<p style=\"\">cxzc</p>",
                            "companyAboutRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"cxzc\"}]}]",
                            "theAsk": "<p style=\"\">czxc</p>",
                            "theAskRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"czxc\"}]}]",
                            "media": [],
                            "timeStamp": 1747962097652,
                            "isSpace": false,
                            "community": "67959032bc6bea0012fdc671"
                        }
                    }
                },
                "metadata": {
                    "ogTitle": "New fundraising initiative: In the ICABA World community community on Networked.",
                    "ogDescription": "cxzc",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682fc8f10465d1001250c48f",
                "postType": "Shared",
                "isOwner": false,
                "timeStamp": 1747962097677,
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {
                    "shareType": "Service",
                    "service": {
                        "user": {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                            "title": " Software Development Test Engineer WBC Community Test Engineer",
                            "primaryCompany": "test",
                            "location": "",
                            "industries": [
                                "Animation"
                            ],
                            "role": "Admin"
                        },
                        "serviceId": "682fc8da0465d1001250c444",
                        "companyName": "xczxc",
                        "companyAbout": "<p style=\"\">cxczxc</p>",
                        "companyAboutRichText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"cxczxc\"}]}]",
                        "industry": {
                            "id": null,
                            "name": null
                        },
                        "location": "",
                        "media": [],
                        "timeStamp": 1747962074033,
                        "isSpace": false,
                        "community": "67959032bc6bea0012fdc671"
                    }
                },
                "metadata": {
                    "ogTitle": "New company or services: In the ICABA World community community on Networked.",
                    "ogDescription": "cxczxc",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682fc8da0465d1001250c450",
                "postType": "Shared",
                "isOwner": false,
                "timeStamp": 1747962074070,
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {
                    "shareType": "Job",
                    "job": {
                        "jobId": "682fc8c70465d1001250c405",
                        "user": {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                            "title": " Software Development Test Engineer WBC Community Test Engineer",
                            "role": "Admin"
                        },
                        "title": "czxc",
                        "jobDescription": "<p style=\"\">cxzczx</p>",
                        "richText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"cxzczx\"}]}]",
                        "industry": {},
                        "contactEmail": "gupta.sahu@networked.co",
                        "applicantCount": 0,
                        "jobDataapplicants": false,
                        "jobInformation": {
                            "jobType": {
                                "id": "5349b4ddd2781d06c0000001",
                                "name": "Full Time",
                                "description": "permanent job opprtunity with employer"
                            },
                            "vacancies": 1,
                            "salaryType": {},
                            "salaryCurrency": {},
                            "salaryDuration": {}
                        },
                        "companyRaw": {
                            "image": "",
                            "imageId": ""
                        },
                        "company": {},
                        "timeStamp": 1747962055222,
                        "isSpace": false,
                        "community": "67959032bc6bea0012fdc671"
                    }
                },
                "metadata": {
                    "ogTitle": "New career opportunity: In the ICABA World community community on Networked.",
                    "ogDescription": "cxzczx",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682fc8c70465d1001250c40f",
                "postType": "Shared",
                "isOwner": false,
                "timeStamp": 1747962055280,
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {
                    "shareType": "Event",
                    "event": {
                        "user": {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "title": " Software Development Test Engineer WBC Community Test Engineer",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png"
                        },
                        "event": {
                            "id": "682fc8aef7f6520012bd7719",
                            "title": "New events",
                            "type": [
                                "Virtual"
                            ],
                            "description": "<p style=\"\"></p>",
                            "startTime": 1747959300856,
                            "endTime": 1748655000000,
                            "registrationLink": "",
                            "email": "",
                            "mobile": "",
                            "image": "",
                            "location": "",
                            "eventFormatType": 0,
                            "timezone": {
                                "key": "Asia/Colombo",
                                "value": "(GMT+05:30) India Standard Time - Colombo",
                                "timezone": "IST"
                            }
                        }
                    }
                },
                "metadata": {
                    "ogTitle": "New event or webinar: In the ICABA World community community on Networked.",
                    "ogDescription": "",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682fc8aff7f6520012bd7722",
                "postType": "Shared",
                "isOwner": false,
                "timeStamp": 1747962031416,
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "metadata": {
                    "ogTitle": "New Poll: In the ICABA World community community on Networked.",
                    "ogDescription": "Pollster",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682f2bdfa0c86500126abd61",
                "postType": "Poll",
                "isOwner": false,
                "timeStamp": 1747921887382,
                "polls": {
                    "pollId": "682f2bdfa0c86500126abd63",
                    "pollCreator": {
                        "id": "6787893423126f0012a92ed6",
                        "name": "Spencer Johnson Spencer",
                        "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                        "designation": " Software Development Test Engineer WBC Community Test Engineer"
                    },
                    "headText": "Pollster",
                    "options": [
                        {
                            "index": 0,
                            "text": "Test1"
                        },
                        {
                            "index": 1,
                            "text": "Test2"
                        }
                    ],
                    "userAnswer": -1,
                    "startTime": 1747921886270,
                    "endTime": 1748102006270,
                    "timeStamp": 1747921887387,
                    "status": 1,
                    "totalVote": 0
                },
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {},
                "metadata": {
                    "ogTitle": "New Update: In the ICABA World community community on Networked.",
                    "ogDescription": "Here is my New Post",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682d72d957f7190012b35828",
                "postType": "Post",
                "isOwner": false,
                "timeStamp": 1747808985308,
                "content": "<p style=\"\">Here is my New Post</p>",
                "media": [],
                "likesCount": 2,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "richText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"Here is my New Post\"}]}]",
                "status": 1,
                "likes": {
                    "likeCount": 2,
                    "users": [
                        {
                            "id": "67fcab65887e750012f11bb6",
                            "name": "april14_user01",
                            "designation": " Software Developer",
                            "loginId": "april14_user01",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-67fcab65887e750012f11bb6/file_1744708481745_Screenshot%202025-04-12%20at%201.22.36%E2%80%AFAM.png"
                        },
                        {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "designation": " Software Development Test Engineer WBC Community Test Engineer",
                            "loginId": "gupta.sahu",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png"
                        }
                    ]
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {},
                "metadata": {
                    "ogTitle": "New Update: In the ICABA World community community on Networked.",
                    "ogDescription": "Newly Posted Test",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682d6bfa57f7190012b35033",
                "postType": "Post",
                "isOwner": false,
                "timeStamp": 1747807226918,
                "content": "<p style=\"\">Newly Posted Test</p>",
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "richText": "[{\"type\":\"paragraph\",\"children\":[{\"text\":\"Newly Posted Test\"}]}]",
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            },
            {
                "user": {
                    "id": "6787893423126f0012a92ed6",
                    "name": "Spencer Johnson Spencer",
                    "email": "gupta.sahu@networked.co",
                    "title": " Software Development Test Engineer WBC Community Test Engineer",
                    "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png",
                    "role": "Admin"
                },
                "sharedDetails": {
                    "shareType": "Event",
                    "event": {
                        "user": {
                            "id": "6787893423126f0012a92ed6",
                            "name": "Spencer Johnson Spencer",
                            "title": " Software Development Test Engineer WBC Community Test Engineer",
                            "image": "https://ntwc-us-east-2-qa-eks-s3-files-storage.s3.us-east-2.amazonaws.com/user-6787893423126f0012a92ed6/file_1741258763688_image%20%2825%29.png"
                        },
                        "event": {
                            "id": "682c81cf814be40012f6e6da",
                            "title": "External Link",
                            "type": [
                                "Virtual"
                            ],
                            "description": "<p style=\"\"></p>",
                            "startTime": 1747746000710,
                            "endTime": 1747752300710,
                            "registrationLink": "https://low-code.browserstack.com/projects/1876323/tests/d15ecd6b82278cbebadc3d6b225eea98ddb1a594?smartMode=recorder",
                            "mobile": "",
                            "image": "",
                            "location": "",
                            "eventFormatType": 0,
                            "timezone": {
                                "key": "Asia/Colombo",
                                "value": "(GMT+05:30) India Standard Time - Colombo",
                                "timezone": "IST"
                            }
                        }
                    }
                },
                "metadata": {
                    "ogTitle": "New event or webinar: In the ICABA World community community on Networked.",
                    "ogDescription": "",
                    "ogImage": "https://common-assets-networked.s3.us-east-2.amazonaws.com/common/logo+icon+rounded+corner.png"
                },
                "postId": "682c81cf814be40012f6e6e5",
                "postType": "Shared",
                "isOwner": false,
                "timeStamp": 1747747279861,
                "media": [],
                "likesCount": 0,
                "commentCount": 0,
                "shareCount": 0,
                "selfLike": false,
                "pinToMediaCenter": false,
                "status": 1,
                "likes": {
                    "likeCount": 0
                }
            }
        ],
        "nextStart": true
    },
    "error": false,
    "message": "Operation completed successfully"
}
Modified at 2026-05-15 11:18:54
Previous
Post Help
Next
Post to Feed
Built with