action illumidesk_projects_project_files_read { label: "Get a project file" provider: illumidesk method: GET path: "/v1/{namespace}/projects/{project}/project_files/{id}/" encoding: json input: { type: "object" properties: { content: { type: "string" } id: { type: "string" } namespace: { type: "string" } project: { type: "string" } } required: ["id", "namespace", "project"] additionalProperties: false } output: { type: "object" additionalProperties: true } }