Complete Database access via web API
Hi folks,
Is it possible to have access to all tables and fields of Zotero Database via Web API?
I already did it with the SQLite local database, but now I need to do via Web.
Warm Regards
Is it possible to have access to all tables and fields of Zotero Database via Web API?
I already did it with the SQLite local database, but now I need to do via Web.
Warm Regards
https://www.zotero.org/support/dev/web_api/v3/start
Thanks for the answer!
Just to see if I understood correctly.
I'm using SQL queries like this:
Select itemNotes.Title, itemTags.tagID, tags.name,
itemNotes.itemID,
items.libraryID, itemNotes.parentItemID,
collectionItems.collectionID,
collections.collectionName,
deletedItems.itemID AS Deleted
From itemTags
INNER JOIN itemNotes On itemTags.itemID = itemNotes.itemID
INNER JOIN tags On itemTags.tagID = tags.tagID
INNER JOIN items On itemNotes.parentItemID = items.itemID
INNER JOIN collectionItems On collectionItems.itemID = items.itemID
INNER JOIN collections On collectionItems.collectionID = collections.collectionID
Left OUTER JOIN deletedItems ON itemTags.itemID = deletedItems.itemID
WHERE deletedItems.itemID IS NULL
ORDER BY collectionItems.collectionID, itemTags.tagID,itemNotes.itemID, itemNotes.parentItemID
Please, observe that I need to have access to special fields like:
itemID, collectionID, tagID
It's VERY important.
Is that possible?
Warm regards.
I transfer all this data to another database so I can manipulate it freely. I'm building a software to support qualitative research analysis. I use Zotero to collect the bibliographic data and to extract important info as Notes and tags. After this, I organize the data by tags and explore the relationships between the information. With this, I'm building graphics ( http://socioatlas.xyz/atlas/Graphic_Matrix.svg ) and even an Atlas ( http://socioatlas.xyz/atlas/smcube_atlas.html ).