Set the Order of Signing Using the PDFfiller PHP Client
Organize your paperwork setting the order of signing using the PDFfiller PHP Client. Send documents and collect digital signatures on the spot.
Set the Order of Signing
Get documents signed in order or all at the same time using the PDFfiller PHP Client. Set the desired order number for each recipient's address.
How to Use PDFfiller PHP Client
Sign in order
Send a document to multiple signers and set the order of signing
PDFfiller\OAuth2\Client\Provider\Document::createConstructor()
View on GitHub
$s2s = new SignatureRequest($provider);
$s2s->document_id = 120833084;
$s2s->method = new SignatureRequestMethod(SignatureRequestMethod::SEND_TO_GROUP);
$s2s->envelope_name = 'group envelope';
$s2s->sign_in_order = true;
//////////
$s2s->security_pin = new SignatureRequestSecurityPin(SignatureRequestSecurityPin::STANDARD);
$s2s->recipients[] = new SignatureRequestRecipient($provider, [
'email' => 'test@test.com',
'name' => 'Test user',
'access' => 'full',
'require_photo' => false,
'order' => 1,
'message_subject' => 'subject',
'message_text' => 'message',
'additional_documents' => [
'doc1'
]
]);
$s2s->recipients[] = new SignatureRequestRecipient($provider, [
'email' => 'test2@test.com',
'name' => 'Test user 2',
'access' => 'full',
'require_photo' => false,
'order' => 2,
'message_subject' => 'subject',
'message_text' => 'message',
'additional_documents' => [
'doc1'
]
]);
///...20-th recipient
$s2s->recipients[] = new SignatureRequestRecipient($provider, [
'email' => 'test20@test.com',
'name' => 'Test user 20',
'access' => 'full',
'require_photo' => false,
'order' => 20,
'message_subject' => 'subject',
'message_text' => 'message',
'additional_documents' => [
'doc1'
]
]);
$result = $s2s->save();
Try PDFfiller API for FREE!
Fill out this form to try all the benefits of using PDFfiller API. The free API key allows you to get a feel for the PDFfiller experience before buying a subscription plan. If you have any questions follow the link below to contact our 24/7 support team.