action digitallocker_get_search_parameters_for_a_document_id { label: "Get Search Parameters for a Document" description: "Returns a list of parameters required to search a document/certificate of an issuer organization registered with DigiLocker. These parameters are used to pull a document from issuer’s repository using Pull Document API mentioned in subsequent section." provider: digitallocker method: POST path: "/oauth2/1/pull/parameters" encoding: form output: { type: "array" items: { type: "object" required: ["label", "paramname", "example"] properties: { example: { type: "string" } label: { type: "string" } paramname: { type: "string" } valuelist: { type: "object" } } } } }