Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonArray.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonArray jarr;
HCkStringBuilder sbRequestBody;
HCkHttpResponse resp;
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
http = CkHttp_Create();
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// [
// "typo"
// ]
jarr = CkJsonArray_Create();
CkJsonArray_AddStringAt(jarr,-1,"typo");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
CkHttp_SetRequestHeader(http,"X-Meili-Api-Key","masterKey");
sbRequestBody = CkStringBuilder_Create();
CkJsonArray_EmitSb(jarr,sbRequestBody);
resp = CkHttp_PTextSb(http,"POST","http://localhost:7700/indexes/indexUID/settings/ranking-rules",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonArray_Dispose(jarr);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonArray_Dispose(jarr);
CkStringBuilder_Dispose(sbRequestBody);
}
Curl Command
curl -X POST
-H "X-Meili-Api-Key: masterKey"
-H "Content-Type: application/json"
-d '[
"typo"
]'
http://localhost:7700/indexes/indexUID/settings/ranking-rules
Postman Collection Item JSON
{
"name": "Update ranking rules",
"protocolProfileBehavior": {
"disabledSystemHeaders": {
"content-type": true
}
},
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "[\n\t\"typo\"\n]\n"
},
"url": {
"raw": "{{url}}/indexes/{{indexUID}}/settings/ranking-rules",
"host": [
"{{url}}"
],
"path": [
"indexes",
"{{indexUID}}",
"settings",
"ranking-rules"
]
}
},
"response": [
]
}