# Lists active login phrases This call gets a list of login phrases that are currently active (were generated less than 15 minutes ago) - phrases that have been used recently and phrases that can be used to log in.. Endpoint: GET /id/activeloginphrases Version: 6.6.1 Security: ZelID ## Response 200 fields (application/json): - `status` (string) Explanation of status Enum: "success", "error" - `data` (array) - `data.loginPhrase` (string) active login phrase - `data.createdAt` (string) timestamp of loginPhrase creation in server time. - `data.expireAt` (string) expiration timestamp of loginPhrase. After this time, the loginPhrase cannot be used anymore. ## Response 401 fields (application/json): - `status` (string) Enum: "error" - `data` (object) - `data.name` (string) Example: "UnauthorizedAccess" - `data.message` (string) Example: "Unauthorized. Invalid signature or insufficient privilege." - `data.code` (string) Example: "UNAUTHORIZED" ## Response 500 fields (application/json): - `status` (string) Enum: "error" - `data` (object) - `data.name` (string) Example: "InternalError" - `data.message` (string) Example: "Internal server error occurred" - `data.code` (string) Example: "INTERNAL_ERROR"