Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
DECLARE @req int
-- Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.HttpRequest', @req OUT
EXEC sp_OASetProperty @req, 'HttpVerb', 'PUT'
EXEC sp_OASetProperty @req, 'Path', '/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/secretGroups/{{secretgroup_Id}}/keystores/{{keystore_Id}}'
EXEC sp_OASetProperty @req, 'ContentType', 'multipart/form-data'
EXEC sp_OAMethod @req, 'AddParam', NULL, 'khanamir', ''
EXEC sp_OAMethod @req, 'AddStringForUpload2', @success OUT, '', '', '', '', 'khanamirPEM'
EXEC sp_OAMethod @req, 'AddFileForUpload2', @success OUT, 'certificate', ' path to file', 'application/octet-stream'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Expect', '100-continue'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'X-ANYPNT-ENV-ID', '{{environment_id}}'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'Authorization', 'Bearer {{token}}'
EXEC sp_OAMethod @req, 'AddHeader', NULL, 'X-ANYPNT-ORG-ID', '{{organization_id}}'
DECLARE @resp int
EXEC sp_OAMethod @http, 'SynchronousRequest', @resp OUT, 'domain.com', 443, 1, @req
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @req
END
GO
Curl Command
curl -X PUT
-H "Authorization: Bearer {{token}}"
-H "X-ANYPNT-ORG-ID: {{organization_id}}"
-H "X-ANYPNT-ENV-ID: {{environment_id}}"
--form 'name=khanamir'
--form 'type=khanamirPEM'
--form 'certificate=@"/path/to/file"'
https://domain.com/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/secretGroups/{{secretgroup_Id}}/keystores/{{keystore_Id}}
Postman Collection Item JSON
{
"name": "Change standard keystore",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{token}}",
"type": "text"
},
{
"key": "X-ANYPNT-ORG-ID",
"value": "{{organization_id}}",
"type": "text"
},
{
"key": "X-ANYPNT-ENV-ID",
"value": "{{environment_id}}",
"type": "text"
}
],
"body": {
"mode": "formdata",
"formdata": [
{
"key": "name",
"value": "khanamir",
"type": "text"
},
{
"key": "type",
"value": "PEM",
"type": "text"
},
{
"key": "certificate",
"type": "file",
"src": [
]
},
{
"key": "key",
"type": "file",
"src": [
]
},
{
"key": "keyPassphrase",
"value": "123456",
"type": "text"
}
]
},
"url": {
"raw": "{{url}}/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/secretGroups/{{secretgroup_Id}}/keystores/{{keystore_Id}}",
"host": [
"{{url}}"
],
"path": [
"secrets-manager",
"api",
"v1",
"organizations",
"{{organization_id}}",
"environments",
"{{environment_id}}",
"secretGroups",
"{{secretgroup_Id}}",
"keystores",
"{{keystore_Id}}"
]
}
},
"response": [
]
}