-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathds_return.html
More file actions
25 lines (19 loc) · 892 Bytes
/
ds_return.html
File metadata and controls
25 lines (19 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!-- extend base layout --> {% extends "base.html" %} {% block content %}
<h2>Returned data from DocuSign!</h2>
<p>Data:</p>
{% if event %}
<p><b>event: {{ event }}.</b> This event parameter is supplied by DocuSign.
Since it could have been spoofed, don't make business decisions based on
its value. Instead, query DocuSign as appropriate.</p>
{% endif %}
{% if envelope_id %}
<p><b>envelopeId: {{ envelope_id }}.</b> The envelopeId parameter is supplied by DocuSign.
Since it could have been spoofed, don't make business decisions based on
its value. Instead, query DocuSign as appropriate.</p>
{% endif %}
{% if state %}
<p><b>state: {{ state }}</b> This example state was sent to DocuSign and has now been received back.
It is usually better to store state in your web framework's session.</p>
{% endif %}
<p><a href="/">Continue</a></p>
{% endblock %}