Back to Collection Items
#include <C_CkHttpW.h>
#include <C_CkHttpRequestW.h>
#include <C_CkHttpResponseW.h>
void ChilkatSample(void)
{
HCkHttpW http;
BOOL success;
HCkHttpRequestW req;
HCkHttpResponseW resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttpW_Create();
req = CkHttpRequestW_Create();
CkHttpRequestW_putHttpVerb(req,L"POST");
CkHttpRequestW_putPath(req,L"/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/details/store");
CkHttpRequestW_putContentType(req,L"multipart/form-data");
CkHttpRequestW_AddStringForUpload2(req,L"",L"",L"",L"",L"JKS");
success = CkHttpRequestW_AddFileForUpload2(req,L"file",L" path to file",L"application/octet-stream");
CkHttpRequestW_AddHeader(req,L"Expect",L"100-continue");
CkHttpRequestW_AddHeader(req,L"X-ANYPNT-ENV-ID",L"{{environment_id}}");
CkHttpRequestW_AddHeader(req,L"Authorization",L"Bearer {{token}}");
CkHttpRequestW_AddHeader(req,L"X-ANYPNT-ORG-ID",L"{{organization_id}}");
resp = CkHttpW_SynchronousRequest(http,L"domain.com",443,TRUE,req);
if (CkHttpW_getLastMethodSuccess(http) == FALSE) {
wprintf(L"%s\n",CkHttpW_lastErrorText(http));
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
return;
}
wprintf(L"%d\n",CkHttpResponseW_getStatusCode(resp));
wprintf(L"%s\n",CkHttpResponseW_bodyStr(resp));
CkHttpResponseW_Dispose(resp);
CkHttpW_Dispose(http);
CkHttpRequestW_Dispose(req);
}
Curl Command
curl -X POST
-H "Authorization: Bearer {{token}}"
-H "X-ANYPNT-ORG-ID: {{organization_id}}"
-H "X-ANYPNT-ENV-ID: {{environment_id}}"
--form 'type=JKS'
--form 'file=@"/path/to/file"'
https://domain.com/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/details/store
Postman Collection Item JSON
{
"name": "Check certificate content",
"request": {
"method": "POST",
"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": "type",
"value": "JKS",
"type": "text"
},
{
"key": "file",
"type": "file",
"src": "/C:/Users/khanamir/abc.jks"
},
{
"key": "storePassphrase",
"value": "!Q2w3e4r5",
"type": "text"
}
]
},
"url": {
"raw": "{{url}}/secrets-manager/api/v1/organizations/{{organization_id}}/environments/{{environment_id}}/details/store",
"host": [
"{{url}}"
],
"path": [
"secrets-manager",
"api",
"v1",
"organizations",
"{{organization_id}}",
"environments",
"{{environment_id}}",
"details",
"store"
]
}
},
"response": [
]
}