(document)
- downloadDocument - Download
- getDocument - Get Document
- deleteDocument - Delete Document
createDocumentReview- Create document review⚠️ DeprecatedlistDocumentReviews- List document reviews⚠️ Deprecated
Download
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.document.downloadDocument({
documentId: "a00f07cb-c04c-4824-9b26-5b7eb5c274ae",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { documentDownloadDocument } from "@isosceles-ai/sdk/funcs/documentDownloadDocument.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await documentDownloadDocument(isosceles, {
documentId: "a00f07cb-c04c-4824-9b26-5b7eb5c274ae",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.DownloadDocumentRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<operations.DownloadDocumentResponseBody>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Get Document
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.document.getDocument({
documentId: "58c46dda-59e0-4c85-8fa3-4882b7168903",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { documentGetDocument } from "@isosceles-ai/sdk/funcs/documentGetDocument.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await documentGetDocument(isosceles, {
documentId: "58c46dda-59e0-4c85-8fa3-4882b7168903",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.GetDocumentRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.Document>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Delete Document
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.document.deleteDocument({
documentId: "5ca417c0-6d74-4752-a9cd-e2813ea67fd6",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { documentDeleteDocument } from "@isosceles-ai/sdk/funcs/documentDeleteDocument.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await documentDeleteDocument(isosceles, {
documentId: "5ca417c0-6d74-4752-a9cd-e2813ea67fd6",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.DeleteDocumentRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.DeleteResponse>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Create a new document review
⚠️ DEPRECATED: This will be removed in a future release, please migrate away from it as soon as possible.
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.document.createDocumentReview({});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { documentCreateDocumentReview } from "@isosceles-ai/sdk/funcs/documentCreateDocumentReview.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await documentCreateDocumentReview(isosceles, {});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.CreateDocumentReviewRequestBody | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.DocumentReview>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |
Retrieve a list of document reviews
⚠️ DEPRECATED: This will be removed in a future release, please migrate away from it as soon as possible.
import { Isosceles } from "@isosceles-ai/sdk";
const isosceles = new Isosceles({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const result = await isosceles.document.listDocumentReviews({
brainId: "08719a8d-017e-41ad-ac35-65ef5d5189d9",
});
// Handle the result
console.log(result);
}
run();
The standalone function version of this method:
import { IsoscelesCore } from "@isosceles-ai/sdk/core.js";
import { documentListDocumentReviews } from "@isosceles-ai/sdk/funcs/documentListDocumentReviews.js";
// Use `IsoscelesCore` for best tree-shaking performance.
// You can create one instance of it to use across an application.
const isosceles = new IsoscelesCore({
security: {
username: process.env["ACP_USERNAME"] ?? "",
password: process.env["ACP_PASSWORD"] ?? "",
},
});
async function run() {
const res = await documentListDocumentReviews(isosceles, {
brainId: "08719a8d-017e-41ad-ac35-65ef5d5189d9",
});
if (!res.ok) {
throw res.error;
}
const { value: result } = res;
// Handle the result
console.log(result);
}
run();
Parameter | Type | Required | Description |
---|---|---|---|
request |
operations.ListDocumentReviewsRequest | ✔️ | The request object to use for the request. |
options |
RequestOptions | ➖ | Used to set various options for making HTTP requests. |
options.fetchOptions |
RequestInit | ➖ | Options that are passed to the underlying HTTP request. This can be used to inject extra headers for examples. All Request options, except method and body , are allowed. |
options.retries |
RetryConfig | ➖ | Enables retrying HTTP requests under certain failure conditions. |
Promise<components.DocumentReviewDetail[]>
Error Type | Status Code | Content Type |
---|---|---|
errors.SDKError | 4XX, 5XX | */* |