curl --request POST \
--url https://api.example.com/iser/original-items-batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"dateFromUTC": null,
"dateToUTC": null,
"iserHandles": null,
"search": null,
"editionIDs": [
1,
23,
4
],
"languageId": 1,
"calendarPeriodTypeID": null,
"page": 1,
"pagesize": 10
}
'{
"success": true,
"data": "<unknown>"
}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/iser/original-items-batch \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"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.
Input model to get the list of items (isms and concats) that the specified iser has created. Supports paging. By default returns the first 10 records found (sorted by importance).
For future use.