action apacta_get_projects_project_id_files_file_id { label: "Show file" description: "Show file uploaded to a project from wall post or form" provider: apacta method: GET path: "/projects/{project_id}/files/{file_id}/" encoding: json input: { type: "object" properties: { file_id: { type: "string" } project_id: { type: "string" } } required: ["file_id", "project_id"] additionalProperties: false } output: { type: "object" properties: { data: { type: "object" } success: { type: "boolean" } } } }