integration of Appian workflow with DocuSign

Hi All,

We want to integrate Appian workflow with Docu Sign. Is there any plugin exists for that? Our Use case is that we want to email the document to client for sign & they can just sign digitally in email & it can send us signed document back to the workflow & workflow will continue after that.

OriginalPostID-243579

  Discussion posts and replies are publicly visible

Parents
  • Basically, Docu search search uses restful API. I created an Account in their sandbox Dev Environment. Their request structure is :

    POST demo.docusign.net/.../envelopes

    {
    "status": "sent",
    "emailSubject": "Request a signature via email example",
    "documents": [{
    "documentId": "1",
    "name": "contract.pdf",
    "documentBase64": "[base64 encoded file bytes...]"
    }],
    "recipients": {
    "signers": [{
    "name": "[SIGNER NAME]",
    "email": "[SIGNER EMAIL ADDRESS]",
    "recipientId": "1",
    "tabs": {
    "signHereTabs": [{
    "xPosition": "25",
    "yPosition": "50",
    "documentId": "1",
    "pageNumber": "1"
    }]
    }
    }]
    }


    Can anyone please guide me how can I use it into our httpquery to see if t works fine?

    Thanks
    Rishu
Reply
  • Basically, Docu search search uses restful API. I created an Account in their sandbox Dev Environment. Their request structure is :

    POST demo.docusign.net/.../envelopes

    {
    "status": "sent",
    "emailSubject": "Request a signature via email example",
    "documents": [{
    "documentId": "1",
    "name": "contract.pdf",
    "documentBase64": "[base64 encoded file bytes...]"
    }],
    "recipients": {
    "signers": [{
    "name": "[SIGNER NAME]",
    "email": "[SIGNER EMAIL ADDRESS]",
    "recipientId": "1",
    "tabs": {
    "signHereTabs": [{
    "xPosition": "25",
    "yPosition": "50",
    "documentId": "1",
    "pageNumber": "1"
    }]
    }
    }]
    }


    Can anyone please guide me how can I use it into our httpquery to see if t works fine?

    Thanks
    Rishu
Children
No Data