Document
List all Documents in an Organization
Overview
Document
AI Chat
AI Table
- POSTCreate an AI Table
- GETList AI Tables
- GETGet an AI Table
- POSTUpdate an AI Table
- DELDelete an AI Table
- POSTCreate an AI Table column
- GETList all columns in an AI Table
- GETGet an AI Table column
- POSTUpdate an AI Table column
- POSTRun AI on all cells in a column
- DELDelete an AI Table column
- GETList all cells in a row
- POSTRun AI on all cells in a row
- POSTCreate cells and run AI
- POSTCreate cell without AI
- POSTUpdate cell without AI
- GETList all cells in an AI Table
Document
List all Documents in an Organization
List all Documents within an Organization
GET
/
api
/
organization
/
{organization_id}
/
document
/
list
curl --request GET \
--url https://cite.petal.org/api/organization/{organization_id}/document/list \
--header 'Authorization: Bearer <token>'
[
{
"annotation_ids": [
123
],
"created_at": "<string>",
"csl": {},
"doctype": "<string>",
"file_resource_size": 123,
"file_size": 123,
"filename": "<string>",
"id": 123,
"is_trash": true,
"meta": {},
"modified_at": "<string>",
"modified_by": 123,
"organization_id": 123,
"pages": 123,
"resource_size": 123,
"status": {},
"tag_ids": [
123
],
"ui": {},
"use_ocr": true,
"user": {
"id": 123,
"name": "<string>"
}
}
]
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
The unique ID of the Organization
Response
200
application/json
OK
The response is of type object[]
.
curl --request GET \
--url https://cite.petal.org/api/organization/{organization_id}/document/list \
--header 'Authorization: Bearer <token>'
[
{
"annotation_ids": [
123
],
"created_at": "<string>",
"csl": {},
"doctype": "<string>",
"file_resource_size": 123,
"file_size": 123,
"filename": "<string>",
"id": 123,
"is_trash": true,
"meta": {},
"modified_at": "<string>",
"modified_by": 123,
"organization_id": 123,
"pages": 123,
"resource_size": 123,
"status": {},
"tag_ids": [
123
],
"ui": {},
"use_ocr": true,
"user": {
"id": 123,
"name": "<string>"
}
}
]