drs_operations.list_programs
GET
/programs
const url = 'https://raw.githubusercontent.com/ga4gh/drs/v1/programs';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://raw.githubusercontent.com/ga4gh/drs/v1/programsList all programs available
Authorizations
Section titled “Authorizations ”Responses
Section titled “ Responses ”Ok
Media type application/json
Array of programs
Array<string>
Example generated
[ "example"]