Message Metadata
Gets the message metadata relationship. This API allows users to track the relationship between a message and all the forwards and replies of that message.
Path parameters
messageIdstringRequired
Valid id of a SOCIALMESSAGE
Header parameters
sessionTokenstringRequired
Session authentication token.
User-AgentstringRequired
Request user agent.
Responses
200
Successful Operation
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
get
GET /pod/v1/admin/messages/{messageId}/metadata/relationships HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
User-Agent: text
Accept: */*
{
"messageId": "text",
"parent": {
"messageId": "text",
"relationshipType": "REPLY_FORM"
},
"replies": [
"text"
],
"forwards": [
"text"
],
"formReplies": [
"text"
]
}
📘 Message RelationshipThe Message Metadata API returns information about the current message relationships (parent, replies, forwards and form replies).
🚧 Required RolesCalling this endpoint requires the Content Management role. See Bot Permissions for a list of roles and associated privileges.
Last updated
Was this helpful?