action files_get_users_user_id_cipher_uses { label: "List User Cipher Uses" description: "List User Cipher Uses" provider: files method: GET path: "/users/{user_id}/cipher_uses" encoding: json input: { type: "object" properties: { cursor: { type: "string" } per_page: { type: "integer" format: "int32" } user_id: { type: "integer" format: "int32" } } required: ["user_id"] additionalProperties: false } output: { type: "array" items: { type: "object" description: "List User Cipher Uses" properties: { created_at: { type: "string" format: "date-time" description: "The earliest recorded use of this combination of interface and protocol and cipher (for this user)" } id: { type: "integer" format: "int32" description: "UserCipherUse ID" } interface: { type: "string" description: "The interface accessed" enum: ["web", "ftp", "sftp", "dav", "desktop", "restapi", "robot", "jsapi"] } protocol_cipher: { type: "string" description: "The protocol and cipher employed" } updated_at: { type: "string" format: "date-time" description: "The most recent use of this combination of interface and protocol and cipher (for this user)" } user_id: { type: "integer" format: "int32" description: "ID of the user who performed this access" } } } } }