C++ / WAC API / Disable Multi-Factor Authentication
Back to Collection Items
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttp http;
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "DisableMFA": true
// }
CkJsonObject json;
json.UpdateBool("DisableMFA",true);
http.SetRequestHeader("Authorization","{{WACApiKey}}");
CkHttpResponse *resp = http.PostJson3("https://domain.com/v1/accounts/:AcctNum","application/json",json);
if (http.get_LastMethodSuccess() == false) {
std::cout << http.lastErrorText() << "\r\n";
return;
}
std::cout << resp->get_StatusCode() << "\r\n";
std::cout << resp->bodyStr() << "\r\n";
delete resp;
}
Curl Command
curl -X POST
-H "Authorization: {{WACApiKey}}"
-d '{
"DisableMFA": true
}'
https://domain.com/v1/accounts/:AcctNum
Postman Collection Item JSON
{
"name": "Disable Multi-Factor Authentication",
"request": {
"method": "POST",
"header": [
{
"key": "Authorization",
"value": "{{WACApiKey}}",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"DisableMFA\": true\r\n}",
"options": {
"raw": {
"language": "json"
}
}
},
"url": {
"raw": "{{baseURL}}/v1/accounts/:AcctNum",
"host": [
"{{baseURL}}"
],
"path": [
"v1",
"accounts",
":AcctNum"
],
"variable": [
{
"key": "AcctNum",
"value": "",
"description": "Account Number"
}
]
}
},
"response": [
]
}