Chilkat Online Tools

delphiAx / WAC API / Update Password Reset Required

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: IChilkatHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := TChilkatHttp.Create(Self);

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "PasswordResetRequired": true
// }

json := TChilkatJsonObject.Create(Self);
json.UpdateBool('PasswordResetRequired',1);

http.SetRequestHeader('Authorization','{{WACApiKey}}');

resp := http.PostJson3('https://domain.com/v1/accounts/:AcctNum','application/json',json.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);

Curl Command

curl -X POST
	-H "Authorization: {{WACApiKey}}"
	-d '{
    "PasswordResetRequired": true
}'
https://domain.com/v1/accounts/:AcctNum

Postman Collection Item JSON

{
  "name": "Update Password Reset Required",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "{{WACApiKey}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"PasswordResetRequired\": true\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseURL}}/v1/accounts/:AcctNum",
      "host": [
        "{{baseURL}}"
      ],
      "path": [
        "v1",
        "accounts",
        ":AcctNum"
      ],
      "variable": [
        {
          "key": "AcctNum",
          "value": "937203",
          "description": "Account Number"
        }
      ]
    }
  },
  "response": [
  ]
}