If I do the following request:
I get an ID back in the format: groupid_postid
This is taken from here:
https://developers.facebook.com/docs/workplace/reference/graph-api/post. However, there doesn't appear to be any way of posting as a reply to a post. I decided to try and intuitively come up with routes into it:
and many more but I'm just making it up at this point. Anyone have any idea how to post a message as a reply to that post id you get back? It's possible within the workplace itself:
so I had assumed it was possible.
You can post a comment under another comment using the following API:
POST https://graph.workplace.com/{post-id}/comments
with a body like so:
{
"message": "Comment on article post"
}
Note: