My Question is can we download all the signed documents? These are things i have tried so far, the 1st one downloads documents which are not signed and second one just shows response from form_data endpoint
temp_file = envelope_api.get_document(
account_id=account_id_raw,
document_id='archive',
envelope_id=envelope_id,
)
envelope_form_data_url = 'https://demo.docusign.net/restapi/v2.1/accounts/{accountId}/envelopes/{envelopeId}/form_data'
payload = {'accountId': account_id, 'envelopeId': envelope_id}
r = requests.get(envelope_form_data_url, params=payload,
headers={'Authorization': 'Bearer ' + request.GET.get('token')})
response_envelope_form = r.json()
Please help required