POST SSH/SkipKeyRotation
Marks a key that does not require rotation.
Requirements
- Token scope: SSH:Manage
Headers
-
Content type: Content-Type:application/json.
- Token: The bearer access token that you received. For example, Authorization:Bearer 4MyGeneratedBearerTknz==. For more information, see Passing a bearer token in your API calls.
Parameters
|
Name |
Description |
|
|---|---|---|
| KeyId | A public key identifier. To get the KeyId, call GET SSH/KeysetDetails. |
Returns
|
Name |
Description |
|---|---|
|
Response |
The SshWebResponse object with result of the operation. For more information, see SSH SshWebResponse object. |
Example: Bypass rotation of a single key
Request
POST https://tpp.venafi.example/vedsdk/SSH/SkipKeyRotation
Authorization:Bearer 4MyGeneratedBearerTknz==
{
"KeyId":3347
}
Response
HTTP/1.1 200 OK
{
"Success":true }