Authentification par certificat de test CyberArk AAM
Une API REST est une API conforme aux principes de conception du style architectural REST (Representational State Transfer). Les API REST sont donc parfois appelées API RESTful.
Une façon pratique de tester l'API REST de CyberArk pour AAM (Application Access Manager) est à partir de Windows Powershell ou de 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>"}Mis à jour
Ce contenu vous a-t-il été utile ?