Two Person Face-To-Face Transaction - PHP
Thursday, November 10, 2016 at 09:46amI have been using this blog post for help in getting my project off the ground.
I have been working to create a process in which two people (agent and insured) can do a face-to-face transaction. However, I have been running into a bit of a snag. How would I go about modifying this to allow a second person to sign in an i-frame after the first is completed?
Reply to: Two Person Face-To-Face Transaction - PHP
Thursday, November 10, 2016 at 10:48amReply to: Two Person Face-To-Face Transaction - PHP
Tuesday, November 15, 2016 at 02:36ampublic function buildPackage($firstName, $lastName, $email) { $build = array( 'settings' => array( 'ceremony ' => array( 'inPerson' => 'true', ) ), 'type' => 'PACKAGE', 'status' => 'DRAFT', 'roles' => array( array( 'id' => 'Signer1', 'type' => 'SIGNER', 'signers' => array( array( 'email' => $email, 'firstName' => $firstName, 'lastName' => $lastName, 'id' => 'Signer1', ) ), ), array( 'id' => 'Signer2', 'type' => 'SIGNER', 'signers' => array( array( 'email' => '[email protected]', 'firstName' => 'David', 'lastName' => 'Ilgen', 'id' => 'Signer2', ) ), ), array( 'id' => 'Sender1', 'type' => 'SENDER', 'signers' => array( array( 'email' => '[email protected]', 'firstName' => 'David', 'lastName' => 'Ilgen', 'id' => 'Sender1', ) ), ), ), 'name' => 'PHP Application Example', ); $packageJSON = json_encode($build); $packageId = json_decode($this->sendRequest($this->packageAppend, $packageJSON, NULL, NULL), true); return $packageId; }Thank you.Reply to: Two Person Face-To-Face Transaction - PHP
Tuesday, November 15, 2016 at 04:28amReply to: Two Person Face-To-Face Transaction - PHP
Thursday, November 17, 2016 at 08:51amReply to: Two Person Face-To-Face Transaction - PHP
Thursday, November 17, 2016 at 09:24am$json = array( "settings" => array( "ceremony" => array( "inPerson" => true ) ), "type" => "PACKAGE", "status" => "SENT", "roles" => array( array( "id" => "Signer1", "type" => "SIGNER", "signers" => array( array( "email" => "[email protected]", "firstName" => "John", "lastName" => "Smith", "id" => "Signer1", ) ) , ) , array( "id" => "Sender1", "type" => "SIGNER", "signers" => array( array( "email" => "[email protected]", "firstName" => "Mike", "lastName" => "Boss", "id" => "Sender1", ) ) , ) , ) , "name" => "PHP Application Example", "documents" => array( array( "name" => "Sample Contract", "id" => "contract", "extract" => true ) ) );Let me know if this works for you.Reply to: Two Person Face-To-Face Transaction - PHP
Thursday, November 17, 2016 at 09:34am