Dashboard URLs and navigations
You can use Ocrolus Dashboard URLs to quickly open a Book or a specific document directly in the Dashboard. These links are especially useful when working with API responses that return identifiers such as book_uuid, uploaded_doc_pk, or uploaded_doc_uuid. The base Dashboard URL is https://dashboard.ocrolus.com.
Tip
- If you do not have access to a Book or document, the link will not load.
- Access to the Dashboard, Book, or document depends on your organization permissions.
Dashboard URL formats
Use the following formats to construct the URL:
Open a Book
To open a specific Book using book_uuid parameter, perform the following steps:
- Start with the base Dashboard URL for Books.
- Append the
book_uuidat the end
https://dashboard.ocrolus.com/books/{book_uuid}
https://dashboard.ocrolus.com/books/3fba0d5d-375f-41b2-b536-d5f661e1f03e
Open a document using Upload doc ID
To open a specific uploaded document within a Book using uploaded_doc_pk parameter, perform the following steps:
- Construct the Book URL using the
book_uuid. - Append
/uploads?selectedUploadPks=followed by theuploaded_doc_pk.
https://dashboard.ocrolus.com/books/{book_uuid}/uploads?selectedUploadPks={uploaded_doc_pk}
https://dashboard.ocrolus.com/books/f80d589e-3646-4b34-b53c-b4003c66e9ae/uploads?selectedUploadPks=26719788
Open a document using Document UUID
To open a specific uploaded document within a Book using uploaded_doc_uuid parameter, perform the following steps:
- Construct the Book URL using the book_uuid
- Append
/uploads?selectedDocId=followed by theuploaded_doc_uuid
https://dashboard.ocrolus.com/books/{book_uuid}/uploads?selectedDocId={uploaded_doc_uuid}
https://dashboard.ocrolus.com/books/f80d589e-3646-4b34-b53c-b4003c66e9ae/uploads?selectedDocId=56bf481d-dcb0-4861-8217-b081739c2f1c
Updated about 2 hours ago