action visagecloud_add_stream_using_post { label: "Create new stream with given name" provider: visagecloud method: POST path: "/rest/v1.1/stream/stream" 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" } url: { type: "string" } username: { type: "string" } } required: ["accessKey", "name", "secretKey", "url"] additionalProperties: false } output: { type: "object" additionalProperties: true } }