Une REST API est une API qui respecte les principes de conception du REST, ou Representational State Transfer, style architectural. Les APIs REST sont donc parfois appelées APIs RESTful.
Une manière pratique de tester la Rest API de CyberArk pour AAM (Application Access Manager) est depuis Windows Powershell ou Powershell ISE.
#Change location into your personal certificate store.
Set-Location "Cert:\CurrentUser\My\"
#Store the certificate with the thumbprint in a variable ($Cert).
$Cert = Get-ChildItem | Where-Object {$_.Thumbprint -eq "" }
#then est the Invoke-RestMethod -Method Get...
Invoke-RestMethod -Method Get -Uri "AIMWebService/api/Accounts" -Certificate $cert -Body @{AppID = "" ; Safe = "" ; Object = "}