当我们使用以下REST API方法更新DocuSign帐户设置时,它会给出以下错误。
PUT / v2 / accounts / {accountId} / settings
有效载荷 { “accountSettings”:[{ “名称”: “authenticationCheck”, “值”: “each_access”}]}
结果 { “errorCode”:“INVALID_REQUEST_PARAMETER”, “message”:“请求至少包含一个无效参数。为参数指定的值无效: authenticationCheck ” }
根据此错误“authenticationCheck”是无效参数。但它是有效的参数,因为我们在使用以下REST API方法检索帐户设置时获得了相同的参数。
GET / v2 / accounts / {accountId} / settings
结果 {“accountSettings”:[{“name”:“authenticationCheck”,“value”:“inital_access”}}}
任何人都可以帮助我们如何更新此内容。
答案 0 :(得分:0)
PUT是正确的,你只需要修改你的JSON:
{
"accountSettings": [
{
"name": "authenticationCheck",
"value": "each_access"
}
]
}
或
{
"accountSettings": [
{
"name": "authenticationCheck",
"value": "initial_access"
}
]
}