Hi, could you please help me with a link to RDM's API Documention.
I need to read the property of the "Documentation" tab to integrate it with Microsoft Powerapps.
Thanks,
Hello Ralf,
The documentation is not yet available with the RDM PowerShell module. It is already on the to do list of the engineering team, I will add your request to our internal ticket to bump the priority.
Best regards,
Richard Boisvert
Hello Ralf,
The documentation is not yet available with the RDM PowerShell module. It is already on the to do list of the engineering team, I will add your request to our internal ticket to bump the priority.
Best regards,
Hi Richard, I am talking about the web based API. We had someone do some development a while ago reading the data in XML format. Howerver, I can not find what documentation he based it on.
And the second question is if the DOCUMENTATION tab is/will be available through the API
Hello Ralf,
My apologies, since you posted in the RDM forum I did not think you had a Devolutions Server data source. We can instead use this module: https://www.powershellgallery.com/packages/Devolutions.server/
If we retrieve an entry, we can see the XML, but the documentation is not available:
$DS_URL= 'http://url' $appSecret = 'secret' $appKey = 'key' [securestring]$Password = ConvertTo-SecureString $appSecret -AsPlainText -Force [pscredential]$Credential = New-Object System.Management.Automation.PSCredential ($appKey, $Password) #connect to the DVLS data source New-DSSession $Credential $DS_URL -AsApplication #retreive an entry $entry = Get-DSEntry -VaultID "2c2e6a07-c790-44b2-a558-a4e44f335206" -EntryId "121c4866-dffa-48a4-93c1-12b0cba4d4d1" -AsRDMConnection #get the xml of the entry $entry.Body.data.connectionInfo.data
I verified and the call for the handbook is not returned currently. I will ask the engineer in charge of the module to add it.
Best regards,
Richard Boisvert
Hi Richard. I am inquiring about RDMamager. Mot SERVER. My question is still unansered.
Hello Ralf,
The API is only available for the Devolutions Server, via the PowerShell module. There was a Python SDK a few years ago but it has been deprecated for at least 2 years.
Since you are not using that data source, you would need to use the RDM PowerShell module to automate your tasks. https://kb.devolutions.net/kb_rdmpowershellcore.html As I mentioned, however, the documentation data is not yet available with it.
I am unsure what else you could be referring to, we would need more information.
Best regards,
Richard Boisvert
Hi Richard,
sorry to have confused you. It is not actually the API I am after, It appears we are getting our RDM data directly from the SQL server. We are running a Microsoft Flow that connects to a Gateway that gets the data from an on-premise SQL server.
I will investigate the SQL server tables in more details. Thanks for your help, please close the ticket.