Hi, I have created a webhook taking in 3 params below is the code snippet. what are the configurations on the fax portal to test this webhook as I am getting faxImage is null.
@RestController
public class FaxController {
@PostMapping("/webhook")
public void faxReceiver(@RequestParam("metadata") String metadata,
@RequestHeader("XM-Signature-256") String signature, @RequestPart(value="faxImage") MultipartFile faxImage){
System.out.println(faxImage.getOriginalFilename());
System.out.println(signature);
System.out.println(metadata);
}