Back to Collection Items
#include <C_CkHttp.h>
#include <C_CkJsonObject.h>
#include <C_CkStringBuilder.h>
#include <C_CkHttpResponse.h>
void ChilkatSample(void)
{
HCkHttp http;
BOOL success;
HCkJsonObject json;
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.
// {
// "expirationDateTime": "2019-05-19T12:41:53.2962802Z"
// }
json = CkJsonObject_Create();
CkJsonObject_UpdateString(json,"expirationDateTime","2019-05-19T12:41:53.2962802Z");
// Adds the "Authorization: Bearer <access_token>" header.
CkHttp_putAuthToken(http,"<access_token>");
CkHttp_SetRequestHeader(http,"Content-Type","application/json");
sbRequestBody = CkStringBuilder_Create();
CkJsonObject_EmitSb(json,sbRequestBody);
resp = CkHttp_PTextSb(http,"PATCH","https://graph.microsoft.com/v1.0/subscriptions/{{SubscriptionId}}",sbRequestBody,"utf-8","application/json",FALSE,FALSE);
if (CkHttp_getLastMethodSuccess(http) == FALSE) {
printf("%s\n",CkHttp_lastErrorText(http));
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
return;
}
printf("%d\n",CkHttpResponse_getStatusCode(resp));
printf("%s\n",CkHttpResponse_bodyStr(resp));
CkHttpResponse_Dispose(resp);
CkHttp_Dispose(http);
CkJsonObject_Dispose(json);
CkStringBuilder_Dispose(sbRequestBody);
}
Curl Command
curl -X PATCH
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
-d '{
"expirationDateTime":"2019-05-19T12:41:53.2962802Z"
}'
https://graph.microsoft.com/v1.0/subscriptions/{{SubscriptionId}}
Postman Collection Item JSON
{
"name": "Update subscription",
"event": [
{
"listen": "test",
"script": {
"exec": [
"try {\r",
" if (responseBody.indexOf(\"InvalidAuthenticationToken\") !== -1)\r",
" {\r",
" console.log(\"You need to run *Get App-Only Access Token* request first.\");\r",
" }\r",
" else\r",
" {\r",
" if (pm.environment.get(\"UserId\") === \"\")\r",
" {\r",
" console.log(\"You need to run *Application | Get Users* request first or set a UserId environment variable.\");\r",
" }\r",
" else\r",
" {\r",
" if (pm.response.status === \"Forbidden\")\r",
" {\r",
" console.log(\"You need to add user delegated permissions in your application to atleast *Mail.Read.All* in portal.azure.com and then consent as user or Grant admin consent in portal. And re-run *Application | Get App-Only Access Token* request to update access token. \");\r",
" }\r",
" else\r",
" {\r",
" if (responseBody.indexOf(\"ResourceNotFound\") !== -1)\r",
" {\r",
" console.log(\"You need to pick a UserId who has a license for a mailbox.\");\r",
" }\r",
" else\r",
" {\r",
" var json = JSON.parse(responseBody);\r",
" postman.setEnvironmentVariable(\"MessageId\", json.value[0].id);\r",
" }\r",
" }\r",
" }\r",
" }\r",
"}\r",
"catch (e) {\r",
" console.log(e);\r",
"}\r",
""
],
"type": "text/javascript"
}
}
],
"request": {
"method": "PATCH",
"header": [
{
"key": "Content-Type",
"name": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"expirationDateTime\":\"2019-05-19T12:41:53.2962802Z\"\r\n}"
},
"url": {
"raw": "https://graph.microsoft.com/v1.0/subscriptions/{{SubscriptionId}}",
"protocol": "https",
"host": [
"graph",
"microsoft",
"com"
],
"path": [
"v1.0",
"subscriptions",
"{{SubscriptionId}}"
]
}
},
"response": [
]
}