action digitallocker_verify_otp_id { label: "Verify OTP" description: "This API is used to verify the OTP sent by DigiLocker during the sign up API call above." provider: digitallocker method: POST path: "/signup/1/demoauthverify" encoding: json output: { properties: { details: { type: "object" required: ["access_token", "expires_in", "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." } 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." } } } } } }