Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. To Know how what documents you should download coming from a P2 DocuSign Request, first you need to GET a list of Documents belonging to a determined DocuSign:

    Code Block
    languagejson
    curl -i --request GET "https://sandboxapiapi.botdoc.io/v1/module_container_docusign/docusigndocument/?docusign={docusign_id}&state=available" \
    --header "Authorization: JWT <Authorization Token>" \

  2. Based on the list in item 1, you need to GET the DocuSign using this cURL:

    Code Block
    languagejson
    curl -i --request GET "https://sandboxapiapi.botdoc.io/v1/module_container_docusign/docusigndocument/{docusign_file_id}/download/" \
    --header "Authorization: JWT <Authorization Token>" \
    --output mydocument.pdf