GET/paperon/projects/{projectId}/files
PaperOn のファイルリストを取得します。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
paperon
paperon.read
| Parameter | Type | Description |
|---|---|---|
| projectId | string | プロジェクト ID required example : 550e8400-e29b-41d4-a716-446655440000 |
| Parameter | Type | Description |
|---|---|---|
| approvalStatus | string | ファイルステータス
Allowed values : extraction_processing, new, extraction_failed, pending, approved, rejected, completed |
| orderBy | string | ソート基準。ソートフィールドと並び順を空白 (%20) で区切って指定する。
default : createdTime desc example : createdTime desc |
| count | integer | 取得数 default : 100 minimum : 1 maximum : 100 |
| cursor | string | カーソル値 example : eyJjcmVhdGVkVGltZSI6MTY2NzM3MzQ0MCwib2Zmc2V0IjozLCJsaW1pdCI6M30 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| files | array (object) | ファイルリスト |
| responseMetaData | object (responseMetaData) |
| Property | Type | Description |
|---|---|---|
| fileId | string | ファイル ID |
| fileName | string | ファイル名 |
| approvalStatus | string | ファイルステータス
Allowed values : extraction_processing, new, extraction_failed, pending, approved, rejected, completed |
| uploaderId | string | アップロード ユーザー ID nullable : true |
| uploaderName | string | アップロード ユーザー名。メールによるアップロードの場合には 'Upload by email' と記載される。 |
| createdTime | string | 作成日時 (ISO 8601) example : 2026-04-09T14:20:30+09:00 format : date-time |
| modifiedTime | string | 更新日時 (ISO 8601) example : 2026-04-09T14:20:30+09:00 format : date-time |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 次のリスト取得時に使用するカーソル値 nullable : true |
example
1{2 "files": [3 {4 "fileId": "550e8400-e29b-41d4-a716-446655440000",5 "fileName": "example.pdf",6 "approvalStatus": "approved",7 "uploaderId": "userf7da-f82c-4284-13e7-030f3b4c756x",8 "uploaderName": "ワークス太郎",9 "createdTime": "2026-04-09T14:20:30+09:00",10 "modifiedTime": "2026-04-09T14:20:30+09:00"11 }12 ],13 "responseMetaData": {14 "nextCursor": "eyJjcmVhdGVkVGltZSI6MTY2NzM3MzQ0MCwib2Zmc2V0IjozLCJsaW1pdCI6M30"15 }16}