I was able to add a step using the KNACK connector. In the connector there is an option for API Request Beta, I added this item.
URL =
https://api.knack.com/v1/objects/object_16/records/(KNACK USER ID FOUND FROM A FIND PREV Step)
The URL will update the Individual (object_16) for record, Knack Record ID.
NOTE: You will need to figure out the object for your instance, The easier way is look at the Knack plugin. So if you have a find Knack, in the criteria you will see Objects, when you click on that you will see the object numbers under the names, this is the object # you will need for the API URL
Method: Put
Additional Headers: Content-Type application/json
In the Body Field I added the following, knowing that the field # for work email is 109. You can get the field number when you go to knack and inspect the field you want, it will show you the field number.
{"field_109":null
"field_109_raw":null
}
TADA! This will clear the email field (which in our knack is Field 109) via the API. You do not have to worry about authenticating as this is handled from the Knack connector itself.
Hope that helps someone else.