Usage of /users/{ids}/mentioned GET
Discussion
Gets all the comments that the users in {ids} were mentioned in.
Note, to count as a mention the comment must be considered to be "in reply to" a user. Most importantly, this means that a comment can only be in reply to a single user.
{ids}
can contain up to 100 semicolon delimited ids. To find ids programmatically look for user_id
on user or shallow_user objects.
The sorts accepted by this method operate on the following fields of the comment object:
- creation –
creation_date
- votes –
score
sort
, min
, max
, fromdate
, and todate
.
This method returns a list of comments.
Try It