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:
- the file was added to a job in the last step in the process
- the file is marked as verified (if it was added in a verification step and the file is verifiable, according to its category)
- the job is finished (has Ready status)
"
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
}
}