action jellyfin_get_keys { label: "Get all keys." provider: jellyfin method: GET path: "/Auth/Keys" encoding: json output: { type: "object" properties: { Items: { type: "array" description: "Gets or sets the items." items: { type: "object" properties: { AccessToken: { type: "string" description: "Gets or sets the access token." } AppName: { type: "string" description: "Gets or sets the name of the application." } AppVersion: { type: "string" description: "Gets or sets the application version." } DateCreated: { type: "string" format: "date-time" description: "Gets or sets the date created." } DateLastActivity: { type: "string" format: "date-time" } DateRevoked: { type: "string" format: "date-time" description: "Gets or sets the date revoked." } DeviceId: { type: "string" description: "Gets or sets the device identifier." } DeviceName: { type: "string" description: "Gets or sets the name of the device." } Id: { type: "integer" format: "int64" description: "Gets or sets the identifier." } IsActive: { type: "boolean" description: "Gets or sets a value indicating whether this instance is active." } UserId: { type: "string" format: "uuid" description: "Gets or sets the user identifier." } UserName: { type: "string" } } additionalProperties: false } } StartIndex: { type: "integer" format: "int32" description: "The index of the first record in Items." } TotalRecordCount: { type: "integer" format: "int32" description: "The total number of records available." } } additionalProperties: false } }