Skip to main content
POST
/
iser
/
recents
/
filter
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.
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>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
forIserCode
string<uuid> | null
forIserHandle
string | null
languageID
integer<int32>
default:1
filterMode
string | null
default:IserPlusIsmd|OthersPlusIsmd|IserCommented|OthersCommented|IserChained|OthersChained
orderBy
string | null
default:DESC
fieldName
string | null
page
integer<int32>
default:1
pageSize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown