action digitallocker_get_list_of_documents_provided_by_an_issuer_id { label: "Get List of Documents Provided by an Issuer" description: "Returns a list of documents/certificates issued by an issuer organization registered with DigiLocker." provider: digitallocker method: POST path: "/oauth2/1/pull/doctype" encoding: form output: { type: "object" required: ["documents"] properties: { documents: { type: "array" items: { required: ["doctype", "description"] properties: { description: { type: "string" } doctype: { type: "string" } } } } } } }