phpAx / WAC API / Send Password Reset To Sub Account Email
        
        Back to Collection Items
        <?php
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new COM("Chilkat.Http");
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
//   "SendPasswordResetToSubAccountEmail": true
// }
$json = new COM("Chilkat.JsonObject");
$json->UpdateBool('SendPasswordResetToSubAccountEmail',1);
$http->SetRequestHeader('Authorization','{{WACApiKey}}');
$resp = new COM("Chilkat.HttpResponse");
$success = $http->HttpJson('POST','https://domain.com/v1/accounts/:AcctNum',$json,'application/json',$resp);
if ($success == 0) {
    print $http->LastErrorText . "\n";
    exit;
}
print $resp->StatusCode . "\n";
print $resp->BodyStr . "\n";
?>
        Curl Command
        curl -X POST
	-H "Authorization: {{WACApiKey}}"
	-d '{
    "SendPasswordResetToSubAccountEmail": true
}'
https://domain.com/v1/accounts/:AcctNum
        Postman Collection Item JSON
        {
  "name": "Send Password Reset To Sub Account Email",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "{{WACApiKey}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n    \"SendPasswordResetToSubAccountEmail\": 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": [
  ]
}