This API retrieves pincode details for a user identified by hash.
GET kratos/api/v1/external/pincode
| package org.example; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| /** | |
| * @author - agni | |
| * @created_on - Saturday, 23/09/23 | |
| */ | |
| public class Main { |
| const atob = (str) => Buffer.from(str, "base64").toString(); | |
| const btoa = (str) => Buffer.from(str).toString("base64"); |