POST SSH/RetryKeyOperation
Retries any failing operation (addition, removal, editing) on the specified key. If no operation has failed for the key, the method does nothing.
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 |
Identifier of keyset to retry failed operation. |
Returns
|
Name |
Description |
|---|---|
|
Response |
SshWebResponse object with result of the operation. For more information, see SSH SshWebResponse object. |
Example: Retry a key operation
Request
POST https://tpp.venafi.example/vedsdk/SSH/RetryKeyOperation
Authorization:Bearer 4MyGeneratedBearerTknz==
{
"KeyId" : 59
}
Response
HTTP/1.1 200 OK
{
"Success":true
}