For the complete documentation index, see llms.txt. This page is also available as Markdown.

Autenticazione con certificato di test CyberArk AAM

Una REST API è un'API conforme ai principi di progettazione dello stile architetturale REST, o Representational State Transfer. Le REST API sono quindi talvolta chiamate API RESTful.

Un modo pratico per testare la Rest API di CyberArk per AAM (Application Access Manager) è da Windows Powershell o Powershell ISE.

#Change location into your personal certificate store.
Set-Location "Cert:\CurrentUser\My\"

#Store the certificate with the thumbprint <your certificate thumbprint> in a variable ($Cert).
$Cert = Get-ChildItem | Where-Object {$_.Thumbprint -eq "<your thumbprint>"}

#Then the Invoke-RestMethod -Method Get...
Invoke-RestMethod -Method Get -Uri "<your Cyberark PasswordVault>AIMWebService/api/Accounts" -Certificate $cert -Body @{AppID = "<Your APP ID>"; Safe = "<Your Safe>"; Object = "<Object name>"}

Ultimo aggiornamento

È stato utile?