禁用签名和查看信封通知

时间:2014-08-01 18:17:02

标签: docusignapi

我想禁用当有人查看或完成对信封签名时收到的电子邮件通知。如果可能的话,我想通过其余的xml api禁用所有通知。

我该怎么做?

感谢。

1 个答案:

答案 0 :(得分:0)

听起来您想要修改用户帐户设置

https://www.docusign.com/p/RESTAPIGuide/RESTAPIGuide.htm#REST%20API%20References/Modify%20User%20Account%20Settings.htm

示例请求

PUT https://{server}/restapi/{apiVersion}/accounts/{accountId}/users/{userId}/settings



    X-DocuSign-Authentication: <DocuSignCredentials><Username>{name}</Username><Password>{password}</Password><IntegratorKey>{integrator_key}</IntegratorKey></DocuSignCredentials>

    Accept: application/json

    Content-Type: application/json



    {

      "userSettings": [

        {

          "name": "sting",

          "value": "string"

        },

        {

          "name": "string",

          "value": "string"

        }

      ],

      "signerEmailNotifications": {

        "envelopeActivation": " string ",

        "envelopeComplete": " string",

        "carbonCopyNotification": "string",

        "certifiedDeliveryNotification": "string",

        "envelopeDeclined": "string",

        "envelopeVoided": "string",

        "envelopeCorrected": "string",

        "reassignedSigner": "string",

        "purgeDocuments": "string",

        "faxReceived": "string",

        "documentMarkupActivation": "string",

        "agentNotification": "string"

      },

      "senderEmailNotifications": {

        "envelopeComplete": "string",

        "changedSigner": "string",

        "senderEnvelopeDeclined": "string",

        "withdrawnConsent": "string",

        "recipientViewed": "string",

        "deliveryFailed": "string"

      }

    }

<强>响应:

响应返回成功或失败。