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
  • Could you try this? I just wrapped the documents and signers fields in brackets to make them an Appian list.

    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
  • Could you try this? I just wrapped the documents and signers fields in brackets to make them an Appian list.

    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