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
  • No problem. Could you actually try this one more time with the below expression? I double-checked my old rule. Recipients is not a list under envelope and tabs is not a list under signers. I made those single fields instead.

    a!toJson(
    {
    status: "sent",
    emailSubject: "Request a signature via email example",
    documents: {
    {
    documentId: "1",
    name: "Test_sign_PDF_Template.pdf",
    documentBase64: "#31754#"
    }
    },
    recipients: {
    signers: {
    {
    name: "Rishu Bansal",
    email: "r.rishubansal@gmail.com",
    recipientId: "1",
    tabs: {
    signHereTabs: {
    {
    xPosition: "25",
    yPosition: "50",
    documentId: "1",
    pageNumber: "3"
    }
    }
    }
    }
    }
    }
    }
    )
Reply
  • No problem. Could you actually try this one more time with the below expression? I double-checked my old rule. Recipients is not a list under envelope and tabs is not a list under signers. I made those single fields instead.

    a!toJson(
    {
    status: "sent",
    emailSubject: "Request a signature via email example",
    documents: {
    {
    documentId: "1",
    name: "Test_sign_PDF_Template.pdf",
    documentBase64: "#31754#"
    }
    },
    recipients: {
    signers: {
    {
    name: "Rishu Bansal",
    email: "r.rishubansal@gmail.com",
    recipientId: "1",
    tabs: {
    signHereTabs: {
    {
    xPosition: "25",
    yPosition: "50",
    documentId: "1",
    pageNumber: "3"
    }
    }
    }
    }
    }
    }
    }
    )
Children
No Data