action digitallocker_get_list_of_issuers_id { label: "Get List of Issuers" description: "Returns the list of issuers registered with DigiLocker." provider: digitallocker method: POST path: "/oauth2/1/pull/issuers" encoding: form output: { type: "object" required: ["issuers"] properties: { issuers: { type: "array" items: { required: ["name", "description", "categories", "issuerid", "orgid"] properties: { categories: { type: "string" } description: { type: "string" } issuerid: { type: "string" } name: { type: "string" } orgid: { type: "string" } } } } } } }