Skip to main content
POST
/
public
/
iser
/
original-items-batch
Public version of gets the original items (isms and concats) created by the specified isers (one or many).
curl --request POST \
  --url https://api.example.com/public/iser/original-items-batch \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "publicSessionToken": "<string>",
  "dateFromUTC": null,
  "dateToUTC": null,
  "iserHandles": null,
  "search": null,
  "editionIDs": [
    1,
    23,
    4
  ],
  "languageId": 1,
  "calendarPeriodTypeID": 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
publicSessionToken
string | null
dateFromUTC
string<date-time> | null
dateToUTC
string<date-time> | null
iserHandles
string[] | null
search
string | null
editionIDs
integer<int32>[] | null
languageId
integer<int32>
default:1

For future use.

calendarPeriodTypeID
integer<int32> | null
page
integer<int32>
default:1
pagesize
integer<int32>
default:10

Response

Success

success
boolean
data
unknown