Docusignapi 禁用已签名和查看信封通知

Docusignapi 禁用已签名和查看信封通知,docusignapi,Docusignapi,我想禁用某人查看或完成信封签名时收到的电子邮件通知。如果可能,我可以通过RESTXMLAPI禁用所有通知 我该怎么做 谢谢。听起来您想修改用户帐户设置 样本请求: PUT https://{server}/restapi/{apiVersion}/accounts/{accountId}/users/{userId}/settings X-DocuSign-Authentication: <DocuSignCredentials><Username>{na

我想禁用某人查看或完成信封签名时收到的电子邮件通知。如果可能,我可以通过RESTXMLAPI禁用所有通知

我该怎么做

谢谢。

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

样本请求:

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"

      }

    }
PUT https://{server}/restapi/{apiVersion}/accounts/{accountId}/users/{userId}/settings
X-DocuSign-Authentication:{name}{password}{integrator\u key}
接受:application/json
内容类型:application/json
{
“用户设置”:[
{
“名字”:“刺”,
“值”:“字符串”
},
{
“名称”:“字符串”,
“值”:“字符串”
}
],
“签名邮件通知”:{
“信封活动”:“字符串”,
“信封完成”:“字符串”,
“复写通知”:“字符串”,
“certifiedDeliveryNotification”:“字符串”,
“信封倾斜”:“字符串”,
“信封式”:“字符串”,
“信封更正”:“字符串”,
“重新分配的签名者”:“字符串”,
“purgeDocuments”:“字符串”,
“faxReceived”:“字符串”,
“documentMarkupActivation”:“字符串”,
“代理通知”:“字符串”
},
“senderEmailNotifications”:{
“信封完成”:“字符串”,
“changedSigner”:“字符串”,
“SenderEnvelopedClined”:“字符串”,
“已发送”:“字符串”,
“recipientViewed”:“字符串”,
“deliveryFailed”:“字符串”
}
}
响应:

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"

      }

    }

响应返回成功或失败。

您希望通过REST或只是一般性地执行此操作?通过web控制台更容易做到这一点。我想而且必须通过REST来做到。问题是我在自己的应用程序中使用docusign,所以我试图消除任何docusign品牌或通知,这样人们就不知道docusign是我的后端。嗨,你能给我一个使用XML的示例吗?还有,有没有一个包含所有XML API的页面?您好,我有一个请求体的示例,它仍然不起作用:string requestBody=“”+”+“false”+“+”;嗨,好的,我在json上做了,但它仍然不起作用,我有:string requestBody=“{“+”\“signerEmailNotifications\”:“+”{“+”\“EnveloperActivation\”:“false\”} + "}";