J. L.
J. L.

Reputation: 117

listen when a document gets signed (php docusign)

How do I achieve this in docusign?

I'm gonna use php rest api.

-Send dynamic pdf from server.

-Add sign here tab.

-Listen to when the recipient has signed the pdf. (callback?)

-Save the signed pdf to the server.

I don't want to reach the 1000 call limit but I think I will because of the traffic.

Upvotes: 0

Views: 119

Answers (1)

mrfatbat
mrfatbat

Reputation: 48

You'll either have to do as @Dagon suggested, and loop a getEnvelopeStatus to keep checking for signature.

The other way would be to setup Connect and have push notifications for signed envelopes, and somehow use that to trigger the next function in your application.

Upvotes: 1

Related Questions