Back to Collection Items
integer li_rc
oleobject loo_Http
integer li_Success
oleobject loo_Json
oleobject loo_Resp
oleobject loo_SbResponseBody
oleobject loo_JResp
integer li_RespStatusCode
string ls_AdditionalLabel
string ls_CommunityNickname
string ls_CompanyName
string ls_DisplayName
string ls_FirstName
string ls_Id
integer li_IsActive
integer li_IsInThisCommunity
string ls_LastName
string ls_Color
string ls_LargeIconUrl
string ls_MediumIconUrl
string ls_SmallIconUrl
string ls_SvgIconUrl
string ls_MySubscription
string ls_Name
string ls_Message
string ls_FullEmailPhotoUrl
string ls_LargePhotoUrl
string ls_MediumPhotoUrl
string ls_PhotoVersionId
string ls_SmallPhotoUrl
string ls_StandardEmailPhotoUrl
string ls_V_Url
string ls_Reputation
string ls_Title
string ls_V_Type
string ls_ActorUrl
string ls_UserType
integer li_IsRichText
string ls_Text
integer li_IsBookmarkedByCurrentUser
integer li_IsLikedByCurrentUser
string ls_LikesMessage
string ls_MyLike
integer li_CurrentPageToken
string ls_CurrentPageUrl
string ls_NextPageToken
string ls_NextPageUrl
string ls_PreviousPageToken
string ls_PreviousPageUrl
integer li_Total
integer li_CanContextUserUpdateIsClosed
integer li_IsClosed
string ls_PageCurrentPageToken
string ls_PageCurrentPageUrl
string ls_PageNextPageToken
string ls_PageNextPageUrl
string ls_PagePreviousPageToken
string ls_PagePreviousPageUrl
integer li_PageTotal
integer li_IsEditRestricted
string ls_IsEditableByMeUrl
string ls_LastEditedBy
string ls_LastEditedDate
integer li_LatestRevision
string ls_RelativeLastEditedDate
integer li_Count
integer li_IsMutedByMe
integer li_IsReadByMe
string ls_LastReadDateByMe
string ls_FeedEntityStatus
integer li_IsApprovableByMe
integer li_CanAssignTopics
integer li_DownVoteCount
string ls_MyVote
integer li_UpVoteCount
string ls_ApplicationName
string ls_ApplicationUrl
string ls_CreatedDate
integer li_V_Event
string ls_FeedElementType
integer li_HasVerifiedComment
string ls_HeaderIsRichText
string ls_HeaderText
string ls_ResultId
integer li_IsDeleteRestricted
integer li_IsSharable
string ls_ModifiedDate
string ls_OriginalFeedItem
string ls_OriginalFeedItemActor
string ls_Label
string ls_LabelPlural
string ls_ParentId
string ls_MotifColor
string ls_MotifLargeIconUrl
string ls_MotifMediumIconUrl
string ls_MotifSmallIconUrl
string ls_MotifSvgIconUrl
string ls_ParentMySubscription
string ls_ParentName
string ls_ParentType
string ls_ParentUrl
string ls_PhotoUrl
string ls_RelativeCreatedDate
string ls_ResultType
string ls_ResultUrl
string ls_Visibility
integer li_StatusCode
string ls_ParentAdditionalLabel
string ls_ParentCommunityNickname
string ls_ParentCompanyName
string ls_ParentDisplayName
string ls_ParentFirstName
integer li_ParentIsActive
integer li_ParentIsInThisCommunity
string ls_ParentLastName
string ls_OutOfOfficeMessage
string ls_PhotoFullEmailPhotoUrl
string ls_PhotoLargePhotoUrl
string ls_PhotoMediumPhotoUrl
string ls_PhotoPhotoVersionId
string ls_PhotoSmallPhotoUrl
string ls_PhotoStandardEmailPhotoUrl
string ls_ParentReputation
string ls_ParentTitle
string ls_ParentUserType
integer j
integer li_Count_j
string ls_Text
string ls_V_type
string ls_MotifColor
string ls_MotifLargeIconUrl
string ls_MotifMediumIconUrl
string ls_MotifSmallIconUrl
string ls_MotifSvgIconUrl
string ls_ReferenceId
string ls_ReferenceUrl
string ls_ErrorCode
string ls_Message
integer li_HasErrors
integer i
integer li_Count_i
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loo_Http = create oleobject
// Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
li_rc = loo_Http.ConnectToNewObject("Chilkat.Http")
if li_rc < 0 then
destroy loo_Http
MessageBox("Error","Connecting to COM object failed")
return
end if
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "inputs": [
// {
// "richInput": {
// "subjectId": "<USER_GROUP_RECORD_ID>",
// "body": {
// "messageSegments": [
// {
// "type": "Text",
// "text": "Post Number 1"
// }
// ]
// },
// "capabilities": {
// "files": {
// "items": [
// {
// "id": "<FILE_ID>"
// }
// ]
// }
// },
// "feedElementType": "FeedItem"
// }
// },
// {
// "richInput": {
// "subjectId": "<USER_GROUP_RECORD_ID>",
// "body": {
// "messageSegments": [
// {
// "type": "Text",
// "text": "Post Number 2"
// }
// ]
// },
// "feedElementType": "FeedItem"
// }
// },
// {
// "richInput": {
// "subjectId": "me",
// "body": {
// "messageSegments": [
// {
// "type": "Text",
// "text": "Post Number 3 with Inline"
// },
// {
// "type": "InlineImage",
// "fileId": "<FILE_ID>",
// "altText": "Test Inline"
// }
// ]
// },
// "feedElementType": "FeedItem"
// }
// }
// ]
// }
loo_Json = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")
loo_Json.UpdateString("inputs[0].richInput.subjectId","<USER_GROUP_RECORD_ID>")
loo_Json.UpdateString("inputs[0].richInput.body.messageSegments[0].type","Text")
loo_Json.UpdateString("inputs[0].richInput.body.messageSegments[0].text","Post Number 1")
loo_Json.UpdateString("inputs[0].richInput.capabilities.files.items[0].id","<FILE_ID>")
loo_Json.UpdateString("inputs[0].richInput.feedElementType","FeedItem")
loo_Json.UpdateString("inputs[1].richInput.subjectId","<USER_GROUP_RECORD_ID>")
loo_Json.UpdateString("inputs[1].richInput.body.messageSegments[0].type","Text")
loo_Json.UpdateString("inputs[1].richInput.body.messageSegments[0].text","Post Number 2")
loo_Json.UpdateString("inputs[1].richInput.feedElementType","FeedItem")
loo_Json.UpdateString("inputs[2].richInput.subjectId","me")
loo_Json.UpdateString("inputs[2].richInput.body.messageSegments[0].type","Text")
loo_Json.UpdateString("inputs[2].richInput.body.messageSegments[0].text","Post Number 3 with Inline")
loo_Json.UpdateString("inputs[2].richInput.body.messageSegments[1].type","InlineImage")
loo_Json.UpdateString("inputs[2].richInput.body.messageSegments[1].fileId","<FILE_ID>")
loo_Json.UpdateString("inputs[2].richInput.body.messageSegments[1].altText","Test Inline")
loo_Json.UpdateString("inputs[2].richInput.feedElementType","FeedItem")
// Adds the "Authorization: Bearer <access_token>" header.
loo_Http.AuthToken = "<access_token>"
loo_Http.SetRequestHeader("Content-Type","application/json")
loo_Resp = loo_Http.PostJson3("https://domain.com/services/data/v{{version}}/chatter/feed-elements/batch","application/json",loo_Json)
if loo_Http.LastMethodSuccess = 0 then
Write-Debug loo_Http.LastErrorText
destroy loo_Http
destroy loo_Json
return
end if
loo_SbResponseBody = create oleobject
// Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0
li_rc = loo_SbResponseBody.ConnectToNewObject("Chilkat.StringBuilder")
loo_Resp.GetBodySb(loo_SbResponseBody)
loo_JResp = create oleobject
// Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
li_rc = loo_JResp.ConnectToNewObject("Chilkat.JsonObject")
loo_JResp.LoadSb(loo_SbResponseBody)
loo_JResp.EmitCompact = 0
Write-Debug "Response Body:"
Write-Debug loo_JResp.Emit()
li_RespStatusCode = loo_Resp.StatusCode
Write-Debug "Response Status Code = " + string(li_RespStatusCode)
if li_RespStatusCode >= 400 then
Write-Debug "Response Header:"
Write-Debug loo_Resp.Header
Write-Debug "Failed."
destroy loo_Resp
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
return
end if
destroy loo_Resp
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "hasErrors": true,
// "results": [
// {
// "result": {
// "actor": {
// "additionalLabel": null,
// "communityNickname": "User1696423780773910041",
// "companyName": "Salesforce",
// "displayName": "Name",
// "firstName": "Firstname",
// "id": "005...",
// "isActive": true,
// "isInThisCommunity": true,
// "lastName": "Name",
// "motif": {
// "color": "1B96FF",
// "largeIconUrl": "/img/icon/profile64.png",
// "mediumIconUrl": "/img/icon/profile32.png",
// "smallIconUrl": "/img/icon/profile16.png",
// "svgIconUrl": null
// },
// "mySubscription": null,
// "name": "Name",
// "outOfOffice": {
// "message": ""
// },
// "photo": {
// "fullEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1",
// "largePhotoUrl": "https://<my_domain>/profilephoto/729.../F",
// "mediumPhotoUrl": "https://<my_domain>/profilephoto/729.../M",
// "photoVersionId": "729...",
// "smallPhotoUrl": "https://<my_domain>/profilephoto/729.../T",
// "standardEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1",
// "url": "/services/data/v58.0/connect/user-profiles/005.../photo"
// },
// "reputation": null,
// "title": null,
// "type": "User",
// "url": "/services/data/v58.0/chatter/users/005...",
// "userType": "Internal"
// },
// "body": {
// "isRichText": false,
// "messageSegments": [
// {
// "text": "Post Number 1",
// "type": "Text"
// }
// ],
// "text": "Post Number 1"
// },
// "capabilities": {
// "associatedActions": {
// "platformActionGroups": [
// ]
// },
// "bookmarks": {
// "isBookmarkedByCurrentUser": false
// },
// "chatterLikes": {
// "isLikedByCurrentUser": false,
// "likesMessage": null,
// "myLike": null,
// "page": {
// "currentPageToken": 0,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "close": {
// "canContextUserUpdateIsClosed": true,
// "isClosed": false
// },
// "comments": {
// "page": {
// "currentPageToken": null,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "edit": {
// "isEditRestricted": false,
// "isEditableByMeUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me",
// "lastEditedBy": null,
// "lastEditedDate": null,
// "latestRevision": 1,
// "relativeLastEditedDate": null
// },
// "interactions": {
// "count": 0
// },
// "mute": {
// "isMutedByMe": false
// },
// "readBy": {
// "isReadByMe": true,
// "lastReadDateByMe": "2023-11-22T11:11:25.000Z",
// "page": {
// "currentPageToken": null,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "status": {
// "feedEntityStatus": "Published",
// "isApprovableByMe": true
// },
// "topics": {
// "canAssignTopics": true,
// "items": [
// ]
// },
// "upDownVote": {
// "downVoteCount": 0,
// "myVote": "None",
// "upVoteCount": 0
// }
// },
// "clientInfo": {
// "applicationName": "Postman Playground",
// "applicationUrl": null
// },
// "createdDate": "2023-11-22T11:11:25.000Z",
// "event": false,
// "feedElementType": "FeedItem",
// "hasVerifiedComment": false,
// "header": {
// "isRichText": null,
// "messageSegments": [
// {
// "motif": {
// "color": "1B96FF",
// "largeIconUrl": "/img/icon/profile64.png",
// "mediumIconUrl": "/img/icon/profile32.png",
// "smallIconUrl": "/img/icon/profile16.png",
// "svgIconUrl": null
// },
// "reference": {
// "id": "005...",
// "url": "/services/data/v58.0/chatter/users/005..."
// },
// "text": "Name",
// "type": "EntityLink"
// }
// ],
// "text": "Name"
// },
// "id": "0D5...",
// "isDeleteRestricted": false,
// "isSharable": false,
// "modifiedDate": "2023-11-22T11:11:25.000Z",
// "originalFeedItem": null,
// "originalFeedItemActor": null,
// "parent": {
// "entityLabel": {
// "label": "Account",
// "labelPlural": "Accounts"
// },
// "id": "001...",
// "motif": {
// "color": "5867E8",
// "largeIconUrl": "/img/icon/accounts64.png",
// "mediumIconUrl": "/img/icon/accounts32.png",
// "smallIconUrl": "/img/icon/accounts16.png",
// "svgIconUrl": null
// },
// "mySubscription": null,
// "name": "Burlington Textiles Corp of America",
// "type": "Account",
// "url": "/services/data/v58.0/chatter/records/001..."
// },
// "photoUrl": "https://<my_domain>/profilephoto/729.../T",
// "relativeCreatedDate": "Just now",
// "type": "TextPost",
// "url": "/services/data/v58.0/chatter/feed-elements/0D5...",
// "visibility": "InternalUsers"
// },
// "statusCode": 201
// },
// {
// "result": {
// "actor": {
// "additionalLabel": null,
// "communityNickname": "User1696423780773910041",
// "companyName": "Salesforce",
// "displayName": "Name",
// "firstName": "Firstname",
// "id": "005...",
// "isActive": true,
// "isInThisCommunity": true,
// "lastName": "Name",
// "motif": {
// "color": "1B96FF",
// "largeIconUrl": "/img/icon/profile64.png",
// "mediumIconUrl": "/img/icon/profile32.png",
// "smallIconUrl": "/img/icon/profile16.png",
// "svgIconUrl": null
// },
// "mySubscription": null,
// "name": "Name",
// "outOfOffice": {
// "message": ""
// },
// "photo": {
// "fullEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1",
// "largePhotoUrl": "https://<my_domain>/profilephoto/729.../F",
// "mediumPhotoUrl": "https://<my_domain>/profilephoto/729.../M",
// "photoVersionId": "729...",
// "smallPhotoUrl": "https://<my_domain>/profilephoto/729.../T",
// "standardEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1",
// "url": "/services/data/v58.0/connect/user-profiles/005.../photo"
// },
// "reputation": null,
// "title": null,
// "type": "User",
// "url": "/services/data/v58.0/chatter/users/005...",
// "userType": "Internal"
// },
// "body": {
// "isRichText": false,
// "messageSegments": [
// {
// "text": "Post Number 2",
// "type": "Text"
// }
// ],
// "text": "Post Number 2"
// },
// "capabilities": {
// "associatedActions": {
// "platformActionGroups": [
// ]
// },
// "bookmarks": {
// "isBookmarkedByCurrentUser": false
// },
// "chatterLikes": {
// "isLikedByCurrentUser": false,
// "likesMessage": null,
// "myLike": null,
// "page": {
// "currentPageToken": 0,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "close": {
// "canContextUserUpdateIsClosed": true,
// "isClosed": false
// },
// "comments": {
// "page": {
// "currentPageToken": null,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "edit": {
// "isEditRestricted": false,
// "isEditableByMeUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me",
// "lastEditedBy": null,
// "lastEditedDate": null,
// "latestRevision": 1,
// "relativeLastEditedDate": null
// },
// "interactions": {
// "count": 0
// },
// "mute": {
// "isMutedByMe": false
// },
// "readBy": {
// "isReadByMe": true,
// "lastReadDateByMe": "2023-11-22T11:11:25.000Z",
// "page": {
// "currentPageToken": null,
// "currentPageUrl": "/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3",
// "items": [
// ],
// "nextPageToken": null,
// "nextPageUrl": null,
// "previousPageToken": null,
// "previousPageUrl": null,
// "total": 0
// }
// },
// "status": {
// "feedEntityStatus": "Published",
// "isApprovableByMe": true
// },
// "topics": {
// "canAssignTopics": true,
// "items": [
// ]
// },
// "upDownVote": {
// "downVoteCount": 0,
// "myVote": "None",
// "upVoteCount": 0
// }
// },
// "clientInfo": {
// "applicationName": "Postman Playground",
// "applicationUrl": null
// },
// "createdDate": "2023-11-22T11:11:25.000Z",
// "event": false,
// "feedElementType": "FeedItem",
// "hasVerifiedComment": false,
// "header": {
// "isRichText": null,
// "messageSegments": [
// {
// "motif": {
// "color": "1B96FF",
// "largeIconUrl": "/img/icon/profile64.png",
// "mediumIconUrl": "/img/icon/profile32.png",
// "smallIconUrl": "/img/icon/profile16.png",
// "svgIconUrl": null
// },
// "reference": {
// "id": "005...",
// "url": "/services/data/v58.0/chatter/users/005..."
// },
// "text": "Name",
// "type": "EntityLink"
// }
// ],
// "text": "Name"
// },
// "id": "0D5...",
// "isDeleteRestricted": false,
// "isSharable": true,
// "modifiedDate": "2023-11-22T11:11:25.000Z",
// "originalFeedItem": null,
// "originalFeedItemActor": null,
// "parent": {
// "additionalLabel": null,
// "communityNickname": "User1696423780773910041",
// "companyName": "Salesforce",
// "displayName": "Name",
// "firstName": "Firstname",
// "id": "005...",
// "isActive": true,
// "isInThisCommunity": true,
// "lastName": "Name",
// "motif": {
// "color": "1B96FF",
// "largeIconUrl": "/img/icon/profile64.png",
// "mediumIconUrl": "/img/icon/profile32.png",
// "smallIconUrl": "/img/icon/profile16.png",
// "svgIconUrl": null
// },
// "mySubscription": null,
// "name": "Name",
// "outOfOffice": {
// "message": ""
// },
// "photo": {
// "fullEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1",
// "largePhotoUrl": "https://<my_domain>/profilephoto/729.../F",
// "mediumPhotoUrl": "https://<my_domain>/profilephoto/729.../M",
// "photoVersionId": "729...",
// "smallPhotoUrl": "https://<my_domain>/profilephoto/729.../T",
// "standardEmailPhotoUrl": "https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1",
// "url": "/services/data/v58.0/connect/user-profiles/005.../photo"
// },
// "reputation": null,
// "title": null,
// "type": "User",
// "url": "/services/data/v58.0/chatter/users/005...",
// "userType": "Internal"
// },
// "photoUrl": "https://<my_domain>/profilephoto/729.../T",
// "relativeCreatedDate": "Just now",
// "type": "TextPost",
// "url": "/services/data/v58.0/chatter/feed-elements/0D5...",
// "visibility": "AllUsers"
// },
// "statusCode": 201
// },
// {
// "result": [
// {
// "errorCode": "INVALID_MARKUP",
// "message": "Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character."
// }
// ],
// "statusCode": 400
// }
// ]
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
li_HasErrors = loo_JResp.BoolOf("hasErrors")
i = 0
li_Count_i = loo_JResp.SizeOfArray("results")
do while i < li_Count_i
loo_JResp.I = i
ls_AdditionalLabel = loo_JResp.StringOf("results[i].result.actor.additionalLabel")
ls_CommunityNickname = loo_JResp.StringOf("results[i].result.actor.communityNickname")
ls_CompanyName = loo_JResp.StringOf("results[i].result.actor.companyName")
ls_DisplayName = loo_JResp.StringOf("results[i].result.actor.displayName")
ls_FirstName = loo_JResp.StringOf("results[i].result.actor.firstName")
ls_Id = loo_JResp.StringOf("results[i].result.actor.id")
li_IsActive = loo_JResp.BoolOf("results[i].result.actor.isActive")
li_IsInThisCommunity = loo_JResp.BoolOf("results[i].result.actor.isInThisCommunity")
ls_LastName = loo_JResp.StringOf("results[i].result.actor.lastName")
ls_Color = loo_JResp.StringOf("results[i].result.actor.motif.color")
ls_LargeIconUrl = loo_JResp.StringOf("results[i].result.actor.motif.largeIconUrl")
ls_MediumIconUrl = loo_JResp.StringOf("results[i].result.actor.motif.mediumIconUrl")
ls_SmallIconUrl = loo_JResp.StringOf("results[i].result.actor.motif.smallIconUrl")
ls_SvgIconUrl = loo_JResp.StringOf("results[i].result.actor.motif.svgIconUrl")
ls_MySubscription = loo_JResp.StringOf("results[i].result.actor.mySubscription")
ls_Name = loo_JResp.StringOf("results[i].result.actor.name")
ls_Message = loo_JResp.StringOf("results[i].result.actor.outOfOffice.message")
ls_FullEmailPhotoUrl = loo_JResp.StringOf("results[i].result.actor.photo.fullEmailPhotoUrl")
ls_LargePhotoUrl = loo_JResp.StringOf("results[i].result.actor.photo.largePhotoUrl")
ls_MediumPhotoUrl = loo_JResp.StringOf("results[i].result.actor.photo.mediumPhotoUrl")
ls_PhotoVersionId = loo_JResp.StringOf("results[i].result.actor.photo.photoVersionId")
ls_SmallPhotoUrl = loo_JResp.StringOf("results[i].result.actor.photo.smallPhotoUrl")
ls_StandardEmailPhotoUrl = loo_JResp.StringOf("results[i].result.actor.photo.standardEmailPhotoUrl")
ls_V_Url = loo_JResp.StringOf("results[i].result.actor.photo.url")
ls_Reputation = loo_JResp.StringOf("results[i].result.actor.reputation")
ls_Title = loo_JResp.StringOf("results[i].result.actor.title")
ls_V_Type = loo_JResp.StringOf("results[i].result.actor.type")
ls_ActorUrl = loo_JResp.StringOf("results[i].result.actor.url")
ls_UserType = loo_JResp.StringOf("results[i].result.actor.userType")
li_IsRichText = loo_JResp.BoolOf("results[i].result.body.isRichText")
ls_Text = loo_JResp.StringOf("results[i].result.body.text")
li_IsBookmarkedByCurrentUser = loo_JResp.BoolOf("results[i].result.capabilities.bookmarks.isBookmarkedByCurrentUser")
li_IsLikedByCurrentUser = loo_JResp.BoolOf("results[i].result.capabilities.chatterLikes.isLikedByCurrentUser")
ls_LikesMessage = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.likesMessage")
ls_MyLike = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.myLike")
li_CurrentPageToken = loo_JResp.IntOf("results[i].result.capabilities.chatterLikes.page.currentPageToken")
ls_CurrentPageUrl = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.page.currentPageUrl")
ls_NextPageToken = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.page.nextPageToken")
ls_NextPageUrl = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.page.nextPageUrl")
ls_PreviousPageToken = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.page.previousPageToken")
ls_PreviousPageUrl = loo_JResp.StringOf("results[i].result.capabilities.chatterLikes.page.previousPageUrl")
li_Total = loo_JResp.IntOf("results[i].result.capabilities.chatterLikes.page.total")
li_CanContextUserUpdateIsClosed = loo_JResp.BoolOf("results[i].result.capabilities.close.canContextUserUpdateIsClosed")
li_IsClosed = loo_JResp.BoolOf("results[i].result.capabilities.close.isClosed")
ls_PageCurrentPageToken = loo_JResp.StringOf("results[i].result.capabilities.comments.page.currentPageToken")
ls_PageCurrentPageUrl = loo_JResp.StringOf("results[i].result.capabilities.comments.page.currentPageUrl")
ls_PageNextPageToken = loo_JResp.StringOf("results[i].result.capabilities.comments.page.nextPageToken")
ls_PageNextPageUrl = loo_JResp.StringOf("results[i].result.capabilities.comments.page.nextPageUrl")
ls_PagePreviousPageToken = loo_JResp.StringOf("results[i].result.capabilities.comments.page.previousPageToken")
ls_PagePreviousPageUrl = loo_JResp.StringOf("results[i].result.capabilities.comments.page.previousPageUrl")
li_PageTotal = loo_JResp.IntOf("results[i].result.capabilities.comments.page.total")
li_IsEditRestricted = loo_JResp.BoolOf("results[i].result.capabilities.edit.isEditRestricted")
ls_IsEditableByMeUrl = loo_JResp.StringOf("results[i].result.capabilities.edit.isEditableByMeUrl")
ls_LastEditedBy = loo_JResp.StringOf("results[i].result.capabilities.edit.lastEditedBy")
ls_LastEditedDate = loo_JResp.StringOf("results[i].result.capabilities.edit.lastEditedDate")
li_LatestRevision = loo_JResp.IntOf("results[i].result.capabilities.edit.latestRevision")
ls_RelativeLastEditedDate = loo_JResp.StringOf("results[i].result.capabilities.edit.relativeLastEditedDate")
li_Count = loo_JResp.IntOf("results[i].result.capabilities.interactions.count")
li_IsMutedByMe = loo_JResp.BoolOf("results[i].result.capabilities.mute.isMutedByMe")
li_IsReadByMe = loo_JResp.BoolOf("results[i].result.capabilities.readBy.isReadByMe")
ls_LastReadDateByMe = loo_JResp.StringOf("results[i].result.capabilities.readBy.lastReadDateByMe")
ls_PageCurrentPageToken = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.currentPageToken")
ls_PageCurrentPageUrl = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.currentPageUrl")
ls_PageNextPageToken = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.nextPageToken")
ls_PageNextPageUrl = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.nextPageUrl")
ls_PagePreviousPageToken = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.previousPageToken")
ls_PagePreviousPageUrl = loo_JResp.StringOf("results[i].result.capabilities.readBy.page.previousPageUrl")
li_PageTotal = loo_JResp.IntOf("results[i].result.capabilities.readBy.page.total")
ls_FeedEntityStatus = loo_JResp.StringOf("results[i].result.capabilities.status.feedEntityStatus")
li_IsApprovableByMe = loo_JResp.BoolOf("results[i].result.capabilities.status.isApprovableByMe")
li_CanAssignTopics = loo_JResp.BoolOf("results[i].result.capabilities.topics.canAssignTopics")
li_DownVoteCount = loo_JResp.IntOf("results[i].result.capabilities.upDownVote.downVoteCount")
ls_MyVote = loo_JResp.StringOf("results[i].result.capabilities.upDownVote.myVote")
li_UpVoteCount = loo_JResp.IntOf("results[i].result.capabilities.upDownVote.upVoteCount")
ls_ApplicationName = loo_JResp.StringOf("results[i].result.clientInfo.applicationName")
ls_ApplicationUrl = loo_JResp.StringOf("results[i].result.clientInfo.applicationUrl")
ls_CreatedDate = loo_JResp.StringOf("results[i].result.createdDate")
li_V_Event = loo_JResp.BoolOf("results[i].result.event")
ls_FeedElementType = loo_JResp.StringOf("results[i].result.feedElementType")
li_HasVerifiedComment = loo_JResp.BoolOf("results[i].result.hasVerifiedComment")
ls_HeaderIsRichText = loo_JResp.StringOf("results[i].result.header.isRichText")
ls_HeaderText = loo_JResp.StringOf("results[i].result.header.text")
ls_ResultId = loo_JResp.StringOf("results[i].result.id")
li_IsDeleteRestricted = loo_JResp.BoolOf("results[i].result.isDeleteRestricted")
li_IsSharable = loo_JResp.BoolOf("results[i].result.isSharable")
ls_ModifiedDate = loo_JResp.StringOf("results[i].result.modifiedDate")
ls_OriginalFeedItem = loo_JResp.StringOf("results[i].result.originalFeedItem")
ls_OriginalFeedItemActor = loo_JResp.StringOf("results[i].result.originalFeedItemActor")
ls_Label = loo_JResp.StringOf("results[i].result.parent.entityLabel.label")
ls_LabelPlural = loo_JResp.StringOf("results[i].result.parent.entityLabel.labelPlural")
ls_ParentId = loo_JResp.StringOf("results[i].result.parent.id")
ls_MotifColor = loo_JResp.StringOf("results[i].result.parent.motif.color")
ls_MotifLargeIconUrl = loo_JResp.StringOf("results[i].result.parent.motif.largeIconUrl")
ls_MotifMediumIconUrl = loo_JResp.StringOf("results[i].result.parent.motif.mediumIconUrl")
ls_MotifSmallIconUrl = loo_JResp.StringOf("results[i].result.parent.motif.smallIconUrl")
ls_MotifSvgIconUrl = loo_JResp.StringOf("results[i].result.parent.motif.svgIconUrl")
ls_ParentMySubscription = loo_JResp.StringOf("results[i].result.parent.mySubscription")
ls_ParentName = loo_JResp.StringOf("results[i].result.parent.name")
ls_ParentType = loo_JResp.StringOf("results[i].result.parent.type")
ls_ParentUrl = loo_JResp.StringOf("results[i].result.parent.url")
ls_PhotoUrl = loo_JResp.StringOf("results[i].result.photoUrl")
ls_RelativeCreatedDate = loo_JResp.StringOf("results[i].result.relativeCreatedDate")
ls_ResultType = loo_JResp.StringOf("results[i].result.type")
ls_ResultUrl = loo_JResp.StringOf("results[i].result.url")
ls_Visibility = loo_JResp.StringOf("results[i].result.visibility")
li_StatusCode = loo_JResp.IntOf("results[i].statusCode")
ls_ParentAdditionalLabel = loo_JResp.StringOf("results[i].result.parent.additionalLabel")
ls_ParentCommunityNickname = loo_JResp.StringOf("results[i].result.parent.communityNickname")
ls_ParentCompanyName = loo_JResp.StringOf("results[i].result.parent.companyName")
ls_ParentDisplayName = loo_JResp.StringOf("results[i].result.parent.displayName")
ls_ParentFirstName = loo_JResp.StringOf("results[i].result.parent.firstName")
li_ParentIsActive = loo_JResp.BoolOf("results[i].result.parent.isActive")
li_ParentIsInThisCommunity = loo_JResp.BoolOf("results[i].result.parent.isInThisCommunity")
ls_ParentLastName = loo_JResp.StringOf("results[i].result.parent.lastName")
ls_OutOfOfficeMessage = loo_JResp.StringOf("results[i].result.parent.outOfOffice.message")
ls_PhotoFullEmailPhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.fullEmailPhotoUrl")
ls_PhotoLargePhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.largePhotoUrl")
ls_PhotoMediumPhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.mediumPhotoUrl")
ls_PhotoPhotoVersionId = loo_JResp.StringOf("results[i].result.parent.photo.photoVersionId")
ls_PhotoSmallPhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.smallPhotoUrl")
ls_PhotoStandardEmailPhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.standardEmailPhotoUrl")
ls_PhotoUrl = loo_JResp.StringOf("results[i].result.parent.photo.url")
ls_ParentReputation = loo_JResp.StringOf("results[i].result.parent.reputation")
ls_ParentTitle = loo_JResp.StringOf("results[i].result.parent.title")
ls_ParentUserType = loo_JResp.StringOf("results[i].result.parent.userType")
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.body.messageSegments")
do while j < li_Count_j
loo_JResp.J = j
ls_Text = loo_JResp.StringOf("results[i].result.body.messageSegments[j].text")
ls_V_type = loo_JResp.StringOf("results[i].result.body.messageSegments[j].type")
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.capabilities.associatedActions.platformActionGroups")
do while j < li_Count_j
loo_JResp.J = j
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.capabilities.chatterLikes.page.items")
do while j < li_Count_j
loo_JResp.J = j
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.capabilities.comments.page.items")
do while j < li_Count_j
loo_JResp.J = j
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.capabilities.readBy.page.items")
do while j < li_Count_j
loo_JResp.J = j
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.capabilities.topics.items")
do while j < li_Count_j
loo_JResp.J = j
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result.header.messageSegments")
do while j < li_Count_j
loo_JResp.J = j
ls_MotifColor = loo_JResp.StringOf("results[i].result.header.messageSegments[j].motif.color")
ls_MotifLargeIconUrl = loo_JResp.StringOf("results[i].result.header.messageSegments[j].motif.largeIconUrl")
ls_MotifMediumIconUrl = loo_JResp.StringOf("results[i].result.header.messageSegments[j].motif.mediumIconUrl")
ls_MotifSmallIconUrl = loo_JResp.StringOf("results[i].result.header.messageSegments[j].motif.smallIconUrl")
ls_MotifSvgIconUrl = loo_JResp.StringOf("results[i].result.header.messageSegments[j].motif.svgIconUrl")
ls_ReferenceId = loo_JResp.StringOf("results[i].result.header.messageSegments[j].reference.id")
ls_ReferenceUrl = loo_JResp.StringOf("results[i].result.header.messageSegments[j].reference.url")
ls_Text = loo_JResp.StringOf("results[i].result.header.messageSegments[j].text")
ls_V_type = loo_JResp.StringOf("results[i].result.header.messageSegments[j].type")
j = j + 1
loop
j = 0
li_Count_j = loo_JResp.SizeOfArray("results[i].result")
do while j < li_Count_j
loo_JResp.J = j
ls_ErrorCode = loo_JResp.StringOf("results[i].result[j].errorCode")
ls_Message = loo_JResp.StringOf("results[i].result[j].message")
j = j + 1
loop
i = i + 1
loop
destroy loo_Http
destroy loo_Json
destroy loo_SbResponseBody
destroy loo_JResp
Curl Command
curl -X POST
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"inputs": [
{
"richInput": {
"subjectId": "<USER_GROUP_RECORD_ID>",
"body": {
"messageSegments": [
{
"type": "Text",
"text": "Post Number 1"
}
]
},
"capabilities": {
"files": {
"items": [
{
"id": "<FILE_ID>"
}
]
}
},
"feedElementType": "FeedItem"
}
},
{
"richInput": {
"subjectId": "<USER_GROUP_RECORD_ID>",
"body": {
"messageSegments": [
{
"type": "Text",
"text": "Post Number 2"
}
]
},
"feedElementType": "FeedItem"
}
},
{
"richInput": {
"subjectId": "me",
"body": {
"messageSegments": [
{
"type": "Text",
"text": "Post Number 3 with Inline"
},
{
"type": "InlineImage",
"fileId": "<FILE_ID>",
"altText": "Test Inline"
}
]
},
"feedElementType": "FeedItem"
}
}
]
}'
https://domain.com/services/data/v{{version}}/chatter/feed-elements/batch
Postman Collection Item JSON
{
"name": "Feed Elements, Batch Post",
"event": [
{
"listen": "prerequest",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
},
{
"listen": "test",
"script": {
"exec": [
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"inputs\": [\n {\n \"richInput\": {\n \"subjectId\": \"<USER_GROUP_RECORD_ID>\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 1\"\n }\n ]\n },\n \"capabilities\": {\n \"files\": {\n \"items\": [\n {\n \"id\": \"<FILE_ID>\"\n }\n ]\n }\n },\n \"feedElementType\": \"FeedItem\"\n }\n },\n {\n \"richInput\": {\n \"subjectId\": \"<USER_GROUP_RECORD_ID>\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 2\"\n }\n ]\n },\n \"feedElementType\": \"FeedItem\"\n }\n },\n {\n \"richInput\": {\n \"subjectId\": \"me\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 3 with Inline\"\n },\n {\n \"type\": \"InlineImage\",\n \"fileId\": \"<FILE_ID>\",\n \"altText\": \"Test Inline\"\n }\n ]\n },\n \"feedElementType\": \"FeedItem\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/chatter/feed-elements/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"chatter",
"feed-elements",
"batch"
]
},
"description": "Post a batch of up to 500 feed elements.\n\nhttps://developer.salesforce.com/docs/atlas.en-us.chatterapi.meta/chatterapi/connect_resources_feed_element_batch_post.htm"
},
"response": [
{
"name": "Successful Feed Elements, Batch Post",
"originalRequest": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"inputs\": [\n {\n \"richInput\": {\n \"subjectId\": \"0012o00003PK8DSAA1\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 1\"\n }\n ]\n },\n \"feedElementType\": \"FeedItem\"\n }\n },\n {\n \"richInput\": {\n \"subjectId\": \"0052o00000DOJ1PAAX\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 2\"\n }\n ]\n },\n \"feedElementType\": \"FeedItem\"\n }\n },\n {\n \"richInput\": {\n \"subjectId\": \"me\",\n \"body\": {\n \"messageSegments\": [\n {\n \"type\": \"Text\",\n \"text\": \"Post Number 3 with Inline\"\n },\n {\n \"type\": \"InlineImage\",\n \"fileId\": \"<FILE_ID>\",\n \"altText\": \"Test Inline\"\n }\n ]\n },\n \"feedElementType\": \"FeedItem\"\n }\n }\n ]\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{_endpoint}}/services/data/v{{version}}/chatter/feed-elements/batch",
"host": [
"{{_endpoint}}"
],
"path": [
"services",
"data",
"v{{version}}",
"chatter",
"feed-elements",
"batch"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Date",
"value": "Wed, 22 Nov 2023 11:11:25 GMT"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains"
},
{
"key": "X-Content-Type-Options",
"value": "nosniff"
},
{
"key": "X-XSS-Protection",
"value": "1; mode=block"
},
{
"key": "X-Robots-Tag",
"value": "none"
},
{
"key": "Cache-Control",
"value": "no-cache,must-revalidate,max-age=0,no-store,private"
},
{
"key": "Content-Type",
"value": "application/json;charset=UTF-8"
},
{
"key": "Vary",
"value": "Accept-Encoding"
},
{
"key": "Content-Encoding",
"value": "gzip"
},
{
"key": "Transfer-Encoding",
"value": "chunked"
}
],
"cookie": [
],
"body": "{\n \"hasErrors\": true,\n \"results\": [\n {\n \"result\": {\n \"actor\": {\n \"additionalLabel\": null,\n \"communityNickname\": \"User1696423780773910041\",\n \"companyName\": \"Salesforce\",\n \"displayName\": \"Name\",\n \"firstName\": \"Firstname\",\n \"id\": \"005...\",\n \"isActive\": true,\n \"isInThisCommunity\": true,\n \"lastName\": \"Name\",\n \"motif\": {\n \"color\": \"1B96FF\",\n \"largeIconUrl\": \"/img/icon/profile64.png\",\n \"mediumIconUrl\": \"/img/icon/profile32.png\",\n \"smallIconUrl\": \"/img/icon/profile16.png\",\n \"svgIconUrl\": null\n },\n \"mySubscription\": null,\n \"name\": \"Name\",\n \"outOfOffice\": {\n \"message\": \"\"\n },\n \"photo\": {\n \"fullEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1\",\n \"largePhotoUrl\": \"https://<my_domain>/profilephoto/729.../F\",\n \"mediumPhotoUrl\": \"https://<my_domain>/profilephoto/729.../M\",\n \"photoVersionId\": \"729...\",\n \"smallPhotoUrl\": \"https://<my_domain>/profilephoto/729.../T\",\n \"standardEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1\",\n \"url\": \"/services/data/v58.0/connect/user-profiles/005.../photo\"\n },\n \"reputation\": null,\n \"title\": null,\n \"type\": \"User\",\n \"url\": \"/services/data/v58.0/chatter/users/005...\",\n \"userType\": \"Internal\"\n },\n \"body\": {\n \"isRichText\": false,\n \"messageSegments\": [\n {\n \"text\": \"Post Number 1\",\n \"type\": \"Text\"\n }\n ],\n \"text\": \"Post Number 1\"\n },\n \"capabilities\": {\n \"associatedActions\": {\n \"platformActionGroups\": []\n },\n \"bookmarks\": {\n \"isBookmarkedByCurrentUser\": false\n },\n \"chatterLikes\": {\n \"isLikedByCurrentUser\": false,\n \"likesMessage\": null,\n \"myLike\": null,\n \"page\": {\n \"currentPageToken\": 0,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"close\": {\n \"canContextUserUpdateIsClosed\": true,\n \"isClosed\": false\n },\n \"comments\": {\n \"page\": {\n \"currentPageToken\": null,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"edit\": {\n \"isEditRestricted\": false,\n \"isEditableByMeUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me\",\n \"lastEditedBy\": null,\n \"lastEditedDate\": null,\n \"latestRevision\": 1,\n \"relativeLastEditedDate\": null\n },\n \"interactions\": {\n \"count\": 0\n },\n \"mute\": {\n \"isMutedByMe\": false\n },\n \"readBy\": {\n \"isReadByMe\": true,\n \"lastReadDateByMe\": \"2023-11-22T11:11:25.000Z\",\n \"page\": {\n \"currentPageToken\": null,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"status\": {\n \"feedEntityStatus\": \"Published\",\n \"isApprovableByMe\": true\n },\n \"topics\": {\n \"canAssignTopics\": true,\n \"items\": []\n },\n \"upDownVote\": {\n \"downVoteCount\": 0,\n \"myVote\": \"None\",\n \"upVoteCount\": 0\n }\n },\n \"clientInfo\": {\n \"applicationName\": \"Postman Playground\",\n \"applicationUrl\": null\n },\n \"createdDate\": \"2023-11-22T11:11:25.000Z\",\n \"event\": false,\n \"feedElementType\": \"FeedItem\",\n \"hasVerifiedComment\": false,\n \"header\": {\n \"isRichText\": null,\n \"messageSegments\": [\n {\n \"motif\": {\n \"color\": \"1B96FF\",\n \"largeIconUrl\": \"/img/icon/profile64.png\",\n \"mediumIconUrl\": \"/img/icon/profile32.png\",\n \"smallIconUrl\": \"/img/icon/profile16.png\",\n \"svgIconUrl\": null\n },\n \"reference\": {\n \"id\": \"005...\",\n \"url\": \"/services/data/v58.0/chatter/users/005...\"\n },\n \"text\": \"Name\",\n \"type\": \"EntityLink\"\n }\n ],\n \"text\": \"Name\"\n },\n \"id\": \"0D5...\",\n \"isDeleteRestricted\": false,\n \"isSharable\": false,\n \"modifiedDate\": \"2023-11-22T11:11:25.000Z\",\n \"originalFeedItem\": null,\n \"originalFeedItemActor\": null,\n \"parent\": {\n \"entityLabel\": {\n \"label\": \"Account\",\n \"labelPlural\": \"Accounts\"\n },\n \"id\": \"001...\",\n \"motif\": {\n \"color\": \"5867E8\",\n \"largeIconUrl\": \"/img/icon/accounts64.png\",\n \"mediumIconUrl\": \"/img/icon/accounts32.png\",\n \"smallIconUrl\": \"/img/icon/accounts16.png\",\n \"svgIconUrl\": null\n },\n \"mySubscription\": null,\n \"name\": \"Burlington Textiles Corp of America\",\n \"type\": \"Account\",\n \"url\": \"/services/data/v58.0/chatter/records/001...\"\n },\n \"photoUrl\": \"https://<my_domain>/profilephoto/729.../T\",\n \"relativeCreatedDate\": \"Just now\",\n \"type\": \"TextPost\",\n \"url\": \"/services/data/v58.0/chatter/feed-elements/0D5...\",\n \"visibility\": \"InternalUsers\"\n },\n \"statusCode\": 201\n },\n {\n \"result\": {\n \"actor\": {\n \"additionalLabel\": null,\n \"communityNickname\": \"User1696423780773910041\",\n \"companyName\": \"Salesforce\",\n \"displayName\": \"Name\",\n \"firstName\": \"Firstname\",\n \"id\": \"005...\",\n \"isActive\": true,\n \"isInThisCommunity\": true,\n \"lastName\": \"Name\",\n \"motif\": {\n \"color\": \"1B96FF\",\n \"largeIconUrl\": \"/img/icon/profile64.png\",\n \"mediumIconUrl\": \"/img/icon/profile32.png\",\n \"smallIconUrl\": \"/img/icon/profile16.png\",\n \"svgIconUrl\": null\n },\n \"mySubscription\": null,\n \"name\": \"Name\",\n \"outOfOffice\": {\n \"message\": \"\"\n },\n \"photo\": {\n \"fullEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1\",\n \"largePhotoUrl\": \"https://<my_domain>/profilephoto/729.../F\",\n \"mediumPhotoUrl\": \"https://<my_domain>/profilephoto/729.../M\",\n \"photoVersionId\": \"729...\",\n \"smallPhotoUrl\": \"https://<my_domain>/profilephoto/729.../T\",\n \"standardEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1\",\n \"url\": \"/services/data/v58.0/connect/user-profiles/005.../photo\"\n },\n \"reputation\": null,\n \"title\": null,\n \"type\": \"User\",\n \"url\": \"/services/data/v58.0/chatter/users/005...\",\n \"userType\": \"Internal\"\n },\n \"body\": {\n \"isRichText\": false,\n \"messageSegments\": [\n {\n \"text\": \"Post Number 2\",\n \"type\": \"Text\"\n }\n ],\n \"text\": \"Post Number 2\"\n },\n \"capabilities\": {\n \"associatedActions\": {\n \"platformActionGroups\": []\n },\n \"bookmarks\": {\n \"isBookmarkedByCurrentUser\": false\n },\n \"chatterLikes\": {\n \"isLikedByCurrentUser\": false,\n \"likesMessage\": null,\n \"myLike\": null,\n \"page\": {\n \"currentPageToken\": 0,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/chatter-likes/items\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"close\": {\n \"canContextUserUpdateIsClosed\": true,\n \"isClosed\": false\n },\n \"comments\": {\n \"page\": {\n \"currentPageToken\": null,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/comments/items\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"edit\": {\n \"isEditRestricted\": false,\n \"isEditableByMeUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/edit/is-editable-by-me\",\n \"lastEditedBy\": null,\n \"lastEditedDate\": null,\n \"latestRevision\": 1,\n \"relativeLastEditedDate\": null\n },\n \"interactions\": {\n \"count\": 0\n },\n \"mute\": {\n \"isMutedByMe\": false\n },\n \"readBy\": {\n \"isReadByMe\": true,\n \"lastReadDateByMe\": \"2023-11-22T11:11:25.000Z\",\n \"page\": {\n \"currentPageToken\": null,\n \"currentPageUrl\": \"/services/data/v58.0/chatter/feed-elements/0D5.../capabilities/read-by/items?pageSize=3\",\n \"items\": [],\n \"nextPageToken\": null,\n \"nextPageUrl\": null,\n \"previousPageToken\": null,\n \"previousPageUrl\": null,\n \"total\": 0\n }\n },\n \"status\": {\n \"feedEntityStatus\": \"Published\",\n \"isApprovableByMe\": true\n },\n \"topics\": {\n \"canAssignTopics\": true,\n \"items\": []\n },\n \"upDownVote\": {\n \"downVoteCount\": 0,\n \"myVote\": \"None\",\n \"upVoteCount\": 0\n }\n },\n \"clientInfo\": {\n \"applicationName\": \"Postman Playground\",\n \"applicationUrl\": null\n },\n \"createdDate\": \"2023-11-22T11:11:25.000Z\",\n \"event\": false,\n \"feedElementType\": \"FeedItem\",\n \"hasVerifiedComment\": false,\n \"header\": {\n \"isRichText\": null,\n \"messageSegments\": [\n {\n \"motif\": {\n \"color\": \"1B96FF\",\n \"largeIconUrl\": \"/img/icon/profile64.png\",\n \"mediumIconUrl\": \"/img/icon/profile32.png\",\n \"smallIconUrl\": \"/img/icon/profile16.png\",\n \"svgIconUrl\": null\n },\n \"reference\": {\n \"id\": \"005...\",\n \"url\": \"/services/data/v58.0/chatter/users/005...\"\n },\n \"text\": \"Name\",\n \"type\": \"EntityLink\"\n }\n ],\n \"text\": \"Name\"\n },\n \"id\": \"0D5...\",\n \"isDeleteRestricted\": false,\n \"isSharable\": true,\n \"modifiedDate\": \"2023-11-22T11:11:25.000Z\",\n \"originalFeedItem\": null,\n \"originalFeedItemActor\": null,\n \"parent\": {\n \"additionalLabel\": null,\n \"communityNickname\": \"User1696423780773910041\",\n \"companyName\": \"Salesforce\",\n \"displayName\": \"Name\",\n \"firstName\": \"Firstname\",\n \"id\": \"005...\",\n \"isActive\": true,\n \"isInThisCommunity\": true,\n \"lastName\": \"Name\",\n \"motif\": {\n \"color\": \"1B96FF\",\n \"largeIconUrl\": \"/img/icon/profile64.png\",\n \"mediumIconUrl\": \"/img/icon/profile32.png\",\n \"smallIconUrl\": \"/img/icon/profile16.png\",\n \"svgIconUrl\": null\n },\n \"mySubscription\": null,\n \"name\": \"Name\",\n \"outOfOffice\": {\n \"message\": \"\"\n },\n \"photo\": {\n \"fullEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0IogXzXAXaYKJnuWCNQmXymRq?fromEmail=1\",\n \"largePhotoUrl\": \"https://<my_domain>/profilephoto/729.../F\",\n \"mediumPhotoUrl\": \"https://<my_domain>/profilephoto/729.../M\",\n \"photoVersionId\": \"729...\",\n \"smallPhotoUrl\": \"https://<my_domain>/profilephoto/729.../T\",\n \"standardEmailPhotoUrl\": \"https://<my_domain>/ncsphoto/1wsMlOd3tVC7boygqBO8wMT9KzA0D6tqzpbs-Uw0Ioi-dtynkoFWsl46as__TDFU?fromEmail=1\",\n \"url\": \"/services/data/v58.0/connect/user-profiles/005.../photo\"\n },\n \"reputation\": null,\n \"title\": null,\n \"type\": \"User\",\n \"url\": \"/services/data/v58.0/chatter/users/005...\",\n \"userType\": \"Internal\"\n },\n \"photoUrl\": \"https://<my_domain>/profilephoto/729.../T\",\n \"relativeCreatedDate\": \"Just now\",\n \"type\": \"TextPost\",\n \"url\": \"/services/data/v58.0/chatter/feed-elements/0D5...\",\n \"visibility\": \"AllUsers\"\n },\n \"statusCode\": 201\n },\n {\n \"result\": [\n {\n \"errorCode\": \"INVALID_MARKUP\",\n \"message\": \"Error while parsing Rich Text Content: The value of attribute "src" associated with an element type "img" must not contain the '<' character.\"\n }\n ],\n \"statusCode\": 400\n }\n ]\n}"
}
]
}