Method: /fax form/create
From Videntity Documentaion Wiki
Method: /fax_form/create
Method /fax_form/create generates a fax form that can be sent too the Videntity fax server number to be processed automatically.
https://api.videntity.com/fax_form
It returns a simple xml document like so:
<?xml version="1.0" encoding="utf-8"?> <faxcover> <url>https://videntityfaxform.s3.amazonaws.com/5b455470-a0cd-43ce-9be2-fda0576f918a.pdf</url> </faxcover>
Here is a snip it examples that shows how to call this method through Curl.
curl -d "fax_pages=001&sender_account_number=141073427605443&receiver_account_number=141073427605443&subject_account_number=141073427605443&security_level=1&subject_cc=1&receiver_verify=1&sender_verify=1" https://api.videntity.com/fax_form/create
