Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Jira Legacy
serverSystem Jira
serverId01505d01-b853-3c2e-90f1-ee9b165564fc
keyUXPROD-4070

Overview:

A new API is created to fetch the access log entries which are created through Reading Room APP.

...

you can find the description of each property in the response section in this docs. This API supports CQL query. So one can retrieve data based on any of the above properties.

Endpoint:

GET - https://folio-snapshot-okapi.dev.folio.org/reading-room/access-log - Please replace the host based on the environment.

...

For retrieving access log based on readingRoomName and servicePointId

https://folio-snapshot-okapi.dev.folio.org/reading-room/reading-room/access-log?query=servicePointId=="c4c90014-c8c9-4ade-8f24-b5e313319f4b" and readingRoomName=="monday reading room"

Above request will retrieve all the access log entries which are matching with the given servicePointId and given readingRoomName

For retrieving access log based on userId or action

https://folio-snapshot-okapi.dev.folio.org/reading-room/access-log?query=userId=="21457ab5-4635-4e56-906a-908f05e9233b" or action=="DENIED"

Above request will retrieve all the access log entries which are matching either the given userId or given action

...