Author Aide API Methods
getSavedItems()
Retrieves a list of saved items from the Author Aide API.
You would want to use this method to access previously saved items for editing, review, or management purposes in your application.
Important This method can only be called when you are on the save success page (/save-success) or the bulk task review page (/bulk-task/{bulk_task_id}).
Examples
const response = await authorAideApp.getSavedItems();
console.log('Saved items retrieved successfully:', response);
/* Example response:
[
{
"item_reference": "73d00b19-41b9-4ad0-8848-0d1f82d5f498",
"date_saved": "2025-07-15 14:50:05"
},
{
"item_reference": "4c64b183-5122-4966-b9b9-b9a498f5e552",
"date_saved": "2025-07-15 14:50:28"
}
]
*/
Arguments
None.
Return value
Type object
Returns a Promise that resolves with an array of saved items.
Each item contains the item reference and the date it was saved.