v97

latestOpenAPI 3.1.0raw.githubusercontent.com2026-07-31135175384.2 KB
Credential Providers

Test credential provider connection

Validate the credential provider's token and list accessible vaults.

post/org/credential_providers/{id}/test

Path parameters

idstring required

Credential provider ID

Response

Connection test successful

successboolean required

Whether the connection test was successful

errorstring

Error message if the test failed

Example response

{
  "success": true,
  "vaults": [
    {
      "id": "abc123xyz",
      "name": "Shared Logins"
    }
  ],
  "error": "Invalid token"
}