https://sap.github.io/cloud-sdk/docs/js/features/connectivity/destination
1 2 3 4 5 6 | const { getDestination } = require ( "@sap-cloud-sdk/connectivity" ) const myDestination = await getDestination ( "myDestination" ) if ( myDestination = = = null ) throw Error ( `Destination "myDestination" not found` ) for ( let key in myDestination ) { console . log ( key , myDestination [ key ] ) } |