action xtrf_get_deliverable_files { label: "Returns list of files in a project, that are ready to be delivered to client." description: "Returns list of files in a project, that are ready to be delivered to client. A file is considered deliverable to client when all of the following criteria are met:" provider: xtrf method: GET path: "/v2/projects/{projectId}/files/deliverable" encoding: json input: { type: "object" properties: { projectId: { type: "string" } } required: ["projectId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }