Resend DocuSign Emails

前端 未结 5 1932
谎友^
谎友^ 2020-12-02 00:18

Is there an API endpoint which allows me to retrigger emails to recipients? Sometimes users may not get or lose the DocuSign emails which contain their signing link. I\'d li

5条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-02 00:47

    To replicate the behavior of the "Resend" button in the UI

    pick the next person in the order, and send them an email of what to do

    you can use API Explorer to just filling out the account ID, envelope ID, and Oauth Token, then setting resend-envelope to true

    Like this curl:

    curl --request PUT \
      --url 'https://demo.docusign.net/restapi/v2/accounts/{accountId}/envelopes/{envelopeId}?resend_envelope=true' \
      --header 'accept: application/json' \
      --header 'accept-encoding: gzip,deflate,sdch' \
      --header 'accept-language: en-US,en;q=0.8,fa;q=0.6,sv;q=0.4' \
      --header 'authorization: {bearerToken}' \
      --header 'cache-control: no-cache' \
      --header 'content-type: application/json' \
      --data '{}'
    

    note: this in the body is required, or it will 400 you

    {}
    

提交回复
热议问题