Factify API is currently in Beta.
TypeScript
import { Factify } from "@factify/sdk"; const factify = new Factify({ bearerAuth: "<YOUR_BEARER_TOKEN_HERE>", }); async function run() { const result = await factify.sharing.list({ documentId: "<id>", }); console.log(result); } run();
{ "document_id": "<string>", "general_access_level": "restricted", "recipients": [ { "document_role": "viewer", "id": "<string>", "type": "user", "email": "<string>", "name": "<string>" } ] }
List all recipients with access to a document.
Bearer authentication header of the form Bearer , where is your auth token.
Document ID.
^doc_[0-9a-hjkmnp-tv-z]{26}$
Success
ListDocumentAccessResponse contains the access list and general access level.
Current general access level.
restricted
organization
anyone_with_link
Recipients with access.
Show child attributes