Carbon allows users to upload supported image, audio, video, and text files from Zotero.

Authorization Type

Carbon uses OAuth 1.0 to connect to Zotero.

Authorization Flow

Log into your Zotero account.

Click the “Accept Defaults” button to grant us permission to access Zotero.

Once clicking “Accept Defaults”, all Zotero files are synced and you should see the following confirmation:

Configuration

Custom OAuth Credentials

Custom OAuth credentials is only required for customers who enable white labeling.

Setting up the OAuth App

  1. Create or log into your Zotero Account.

  2. Click here to set up your OAuth app.

  1. Click “Register a New Application” and fill out the info below. Add https://api.carbon.ai/integrations/zotero as the Callback URL. You can also opt to use a custom CNAME record pointing to https://api.carbon.ai. The domain path must still be /integrations/zotero.

  1. Copy and share the Client Key and Client Secret with Carbon.

Functionality

Carbon allows users to upload supported image, audio, video, and text files from Zotero.

Synchronization

By default, Carbon syncs all attachments from your Zotero library along with the accompanying info as metadata.

You can use the resync_file API endpoint to programmatically resync specific Zotero files. To delete Zotero files from Carbon, you can use the delete_files endpoint directly.

To sync Zotero files on a 24-hour schedule (more frequent schedules available upon request), you can use the /update_users endpoint. This endpoint allows organizations to customize syncing settings according to their requirements, with the option to enable syncing for all data sources using the string ‘ALL’. It’s important to note that each request supports up to 100 customer IDs.

Here’s an example illustrating how to automatically enable syncing for updated Zotero content for specified users:

{
    "customer_ids": ["team@carbon.ai", "sam@openai.com"],
    "auto_sync_enabled_sources": ["ZOTERO"]
}