Docusign-重新激活封闭用户的API [英] Docusign - API to reactivate a closed user

查看:76
本文介绍了Docusign-重新激活封闭用户的API的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经能够通过管理控制台重新激活已关闭的Docusign用户,但是是否有REST API?用户文档似乎并未提及这一点。

I've been able to reactivate a closed Docusign user from the Admin Console, but is there a REST API for that? The Users doc doesn't seem to mention this.

我知道有一个与此主题类似的问题,但尚未找到解决方案。我再次发布此问题,希望引起Docusign人们的注意,因为他们建议在SO而不是他们自己的支持/社区论坛上发布与API有关的问题。

I know there's a similar question on this topic, but there was no resolution found yet. I'm posting this question again hoping that it gets the attention of Docusign people, as they recommend posting API-related questions on SO rather than their own support/community forums.

此外,如果确实存在用于重新创建/重新激活已删除用户的API,请对其进行清晰记录。清楚说明每个REST操作的作用及其对某些事物的影响对于使用此类API的开发人员而言非常重要。

Also, if there's an API that does exist to recreate/reactivate a deleted user, please document it with clarity. Spelling out what each REST operation does and how it affects something are very important to developers who use such API.

推荐答案

您可以重新激活通过将相同的用户详细信息传递给 CreateUsers api来删除已删除的用户。

You can reactivate the deleted user by passing the same user details to CreateUsers api.

请注意,电子邮件/密码/用户名组合应与被删除的用户匹配。

Please note that the email/password/userName combination should match the user that was deleted.

这里是向 CreateUsers API的示例请求。

Here is a sample request to the CreateUsers API.

{
  "newUsers": [
    {
      "email": "johnsmith@acme.com",
      "password": "**********",
      "userName": "johnsmith"
    }
  ]
}

这篇关于Docusign-重新激活封闭用户的API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆