action contract_p_post_inbox_reprocess_resource { label: "Schedule inbox reprocessing" description: "This endpoint schedule reprocessing for documents in the given inbox; this will call the async processing,\njust like async document upload\n\n\n**Permission required:** upload" provider: contract_p method: POST path: "/inboxes/{inbox_id}/reprocess" encoding: json input: { type: "object" properties: { name: { type: "string" } reviewer: { type: "string" enum: ["Human", "Machine"] } } additionalProperties: false } output: { type: "object" additionalProperties: true } }