File tree Expand file tree Collapse file tree 3 files changed +18
-0
lines changed
Expand file tree Collapse file tree 3 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ # apx-snippet-start:getWorkflowInstancesList
2+ Status=$( curl -s -w " %{http_code}\n" -i \
3+ --request GET " https://api-d.docusign.com/v1/accounts/${account_id} /workflows/${workflow_id} /instances" \
4+ --header " Authorization: Bearer ${access_token} " \
5+ --output ${response} )
6+ # apx-snippet-end:getWorkflowInstancesList
Original file line number Diff line number Diff line change 1+ # apx-snippet-start:createAgreementSummary
2+ Status=$( curl -s -w " %{http_code}\n" -i \
3+ --request POST " https://api-d.docusign.com/v1/accounts/{accountId}/agreements/{agreementId}/ai/actions/summarize" \
4+ --header " Authorization: Bearer ${access_token} " \
5+ --output ${response} )
6+ # apx-snippet-end:createAgreementSummary
Original file line number Diff line number Diff line change 1+ # apx-snippet-start:deleteAgreement
2+ Status=$( curl -s -w " %{http_code}\n" -i \
3+ --request DELETE " https://api-d.docusign.com/v1/accounts/{accountId}/agreements/{agreementId}" \
4+ --header " Authorization: Bearer ${access_token} " \
5+ --output ${response} )
6+ # apx-snippet-end:deleteAgreement
You can’t perform that action at this time.
0 commit comments