GET/paperon/projects/{projectId}/files/{fileId}
PaperOn ファイルの情報を取得します。
Access Token を指定します。
指定の方法や Access Token の取得方法は 共通仕様 を参照してください。
paperon
paperon.read
| Parameter | Type | Description |
|---|---|---|
| projectId | string | プロジェクト ID required example : 550e8400-e29b-41d4-a716-446655440000 |
| fileId | string | ファイル ID required example : 550e8400-e29b-41d4-a716-446655440000 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| fileId | string | ファイル ID example : 550e8400-e29b-41d4-a716-446655440000 |
| 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' と記載される。 |
| modifiedTime | string | 更新日時 (ISO 8601) example : 2026-04-09T14:20:30+09:00 format : date-time |
| createdTime | string | 作成日時 (ISO 8601) example : 2026-04-09T14:20:30+09:00 format : date-time |
example
1{2 "fileId": "550e8400-e29b-41d4-a716-446655440000",3 "fileName": "example.pdf",4 "approvalStatus": "approved",5 "uploaderId": null,6 "uploaderName": "Upload by email",7 "modifiedTime": "2026-04-09T14:20:30+09:00",8 "createdTime": "2026-04-09T12:00:00+09:00"9}