Senders Notifications

跟風遠走 提交于 2019-12-13 05:24:41

问题


I have the following json request, if I do not use any senders notifications, it works but if I add the senders notifications it does not, why?

{
"userSettings":[
{
     "value":"false",
     "name":"allowSendOnBehalfOf"
}
],
"signerEmailNotifications":{
    "envelopeActivation":"false",
    "envelopeComplete":"false",
    "carbonCopyNotification":"false",
    "certifiedDeliveryNotification":"false",
    "envelopeDeclined":"false",
    "envelopeVoided":"false",
    "envelopeCorrected":"false",
    "reassignedSigner":"false",
    "purgeDocuments":"false",
    "faxReceived":"false",
    "documentMarkupActivation":"false",
    "agentNotification":"false"
},
"senderEmailNotifications":{
    "envelopeComplete":"false",
    "changedSigner":"false",
    "senderEnvelopeDeclined":"false",
    "withdrawnConsent":"false",
    "recipientViewed":"false",
    "deliveryFailed":"false"
 }
}"

回答1:


Remove the final " from your request, it works for me.

{
"userSettings":[
{
     "value":"false",
     "name":"allowSendOnBehalfOf"
}
],
"signerEmailNotifications":{
    "envelopeActivation":"false",
    "envelopeComplete":"false",
    "carbonCopyNotification":"false",
    "certifiedDeliveryNotification":"false",
    "envelopeDeclined":"false",
    "envelopeVoided":"false",
    "envelopeCorrected":"false",
    "reassignedSigner":"false",
    "purgeDocuments":"false",
    "faxReceived":"false",
    "documentMarkupActivation":"false",
    "agentNotification":"false"
},
"senderEmailNotifications":{
    "envelopeComplete":"false",
    "changedSigner":"false",
    "senderEnvelopeDeclined":"false",
    "withdrawnConsent":"false",
    "recipientViewed":"false",
    "deliveryFailed":"false"
 }
}

Leaving the " in there you get an error message, indicating that your request has additional text after the JSON is closed

{
 errorCode: "INVALID_REQUEST_BODY"
 message: "The request body is missing or improperly formatted. Additional text encountered after finished reading JSON content: \". Path '', line 30, position 2."
}


来源:https://stackoverflow.com/questions/25356317/senders-notifications

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!