action xtrf_get_files { label: "Returns list of files in a project." description: "Returns list of files in a project. Only files added to the project (i.e. files that have assigned category and languages) are listed." provider: xtrf method: GET path: "/v2/projects/{projectId}/files" encoding: json input: { type: "object" properties: { projectId: { type: "string" } } required: ["projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }