action digitallocker_sign_up_id { label: "SIGN UP" description: "This API is used to validate Aadhaar details and verify the mobile number by generating an OTP. This API call, if successful, will be followed by verify OTP call by the partner application if the user is online or available to perform OTP validation as indicated in verification parameter" provider: digitallocker method: POST path: "/signup/2/demoauth" encoding: json output: { properties: { details: { type: "object" required: ["access_token", "expires_in", "mobile", "refresh_token", "scope", "token_type"] properties: { access_token: { type: "string" description: "The access token that can be used to call the DigiLocker APIs." } expires_in: { type: "string" description: "The duration in seconds for which the access token is valid." } mobile: { type: "integer" description: "The masked mobile number of the user on which the OTP has been sent. " } refresh_token: { type: "string" description: "The refresh token used to refresh the above access token when it expires. Please refer to Refresh Access Token API for more details." } scope: { type: "string" description: "Scope of the token" } token_type: { type: "string" description: "The type of token which will always be Bearer." } } } } } }