curl --request POST \
--url https://api.example.com/iser/recents/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forIserCode": null,
"forIserHandle": null,
"languageID": 1,
"filterMode": "IserPlusIsmd|OthersPlusIsmd|IserCommented|OthersCommented|IserChained|OthersChained",
"orderBy": "DESC",
"fieldName": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}Retrieves a list of isers that the current iser has recently interacted with somehow based on a filter mode parameter, from the actual root data. This includes comments, chains, and plus-isms.
curl --request POST \
--url https://api.example.com/iser/recents/filter \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"forIserCode": null,
"forIserHandle": null,
"languageID": 1,
"filterMode": "IserPlusIsmd|OthersPlusIsmd|IserCommented|OthersCommented|IserChained|OthersChained",
"orderBy": "DESC",
"fieldName": null,
"page": 1,
"pageSize": 10
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.