action visagecloud_update_stream_using_patch { label: "Update an existing stream with a given ID" provider: visagecloud method: PATCH path: "/rest/v1.1/stream/{streamId}" encoding: json input: { type: "object" properties: { accessKey: { type: "string" } associatedCollections: { type: "string" } attributes: { type: "string" } isActive: { type: "string" } method: { type: "string" } name: { type: "string" } password: { type: "string" } retentionTime: { type: "string" } secretKey: { type: "string" } skipFramesWithNoFaces: { type: "string" } storeAttendanceFaces: { type: "string" } storeAttendanceFrames: { type: "string" } storeOriginalFrames: { type: "string" } streamId: { type: "string" } url: { type: "string" } username: { type: "string" } } required: ["accessKey", "secretKey", "streamId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }