To create a Book using Instant, perform the following steps:
Dashboard
-
Log in to the Ocrolus Dashboard.
-
On the Books page, click NEW BOOK in the screen's upper right corner.
-
On the Create New Book pop-up, enter the name of your Book and choose Instant from the Processing Type dropdown list.
-
Click SUBMIT.
-
On the File Uploader window, upload the document and then click SUBMIT.
API Endpoint
- To create a book via API you need to send a 'POST' request to https://api.ocrolus.com/v1/book/add
- Please refer to this article for body parameters details: https://docs.ocrolus.com/reference/create-a-book
- Sample Request:
curl --request POST \
--url https://api.ocrolus.com/v1/book/add \
--header 'accept: application/json' \
--header 'authorization: Bearer tokenabc' \
--header 'content-type: application/json' \
--data '
{
"book_class": "INSTANT",
"name": "Example Book",
"book_type": "DEFAULT",
"is_public": true
}
'
*Note:
Before you can start using Instant on the Dashboard to work with Books, you must first be configured by Ocrolus to do so. If you're interested in using Instant, please reach out to your Account Manager or contact us at support@ocrolus.com today.
Comments
0 comments
Please sign in to leave a comment.