# get_staged_file **One file waiting for a decision** Details of a single staged file so a person can decide about it — what it is, why it was held, and where it would be filed if approved. It is NOT protected and has no proof. Read-only. - Access: read-only - Calls: `/api/v1/agent/review/` ## Arguments | Name | Type | Required | Description | |---|---|---|---| | `documentId` | string | **yes** | Id from list_review_queue | ## Tool contract ```json { "name": "get_staged_file", "title": "One file waiting for a decision", "description": "Details of a single staged file so a person can decide about it — what it is, why it was held, and where it would be filed if approved. It is NOT protected and has no proof. Read-only.", "access": "read", "destructive": false, "hostedOnProduction": true, "restEndpoint": "/api/v1/agent/review/", "arguments": { "documentId": { "type": "string", "required": true, "description": "Id from list_review_queue" } } } ```