Test credential provider connection

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

POST/org/credential_providers/{id}/test

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

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

id*string

Credential provider ID

Response

application/json

Connection test successful

Result of testing a credential provider connection

curl -X POST "https://example.com/org/credential_providers/string/test"
{  "success": true,  "vaults": [    {      "id": "string",      "name": "string"    }  ],  "error": "string"}