action digitallocker_account_detail_api_id { label: "Get User Details" description: "Client applications can call this API to get the DigiLocker Id, name, date of birth and gender of the account holder. An access token is required to call this API. The API will return the user details of the account with which the access token is linked. It is strongly recommended that the API can be called by client application only once after acquiring the access token. Since the user details do not change, the client application may store the values and use them when necessary than calling this API repeatedly." provider: digitallocker method: GET path: "/oauth2/1/user" encoding: json output: { properties: { details: { type: "object" required: ["digilockerid", "dob", "eaadhaar", "gender", "name"] properties: { digilockerid: { type: "string" description: "A unique 36 character DigiLocker Id of the user account." } dob: { type: "string" format: "dd-mm-yyy" description: "This is date of birth of the user as registered with DigiLocker in DDMMYYYY format." } eaadhar: { type: "string" description: "This indicates whether eAadhaar data is available for this account. Possible values are Y and N." enum: ["Y", "N"] } gender: { type: "string" description: "This is gender of the user as registered with DigiLocker. The possible values are M, F, T for male, female and transgender respectively." enum: ["M", "F", "T"] } name: { type: "string" description: "The name of the user as registered with DigiLocker." } } } } } }