Overview
Allows the client to create a secure link to a vault item, for distribution. The client can set the number of times the link can be used, as well as an expiration time.HTTP request
POST /Agent/Storage/CreateVaultLink
Authentication
Requires a valid JWT bearer token.Request (JSON)
Input parameters
| Parameter | Description |
|---|---|
| PKeyId | Identity of key to use for signing the link. |
| PNonce | A unique random string, at least 32 characters long, with sufficient entropy to not be reused again. If reused, an error will be returned. |
| PKeySignature | Cryptographic signature of the key ID, using the key password. |
| PRequestSignature | Cryptographic signature of the requesut, using the account password. |
| PVaultId | Identifier of the vault item referenced from the link. |
| PTtl | How many seconds the link is valid. If not provided, the link will be permanent. |
| PUseCount | Number of times the link can be used. If not provided, the link can be used any number of times. |
| PMasked | If the link should return masked information. |
Response (JSON)
Response parameters
| Parameter | Description |
|---|---|
| PUrl | The generated URL. |