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>"
}Public version of gets the original items (isms and concats) created by the specified isers (one or many), and returns an array of isers, each with their own set of original items.
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>"
}The access token received from the authorization server in the OAuth 2.0 flow.
For future use.