且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Docusign-重新激活封闭用户的API

更新时间:2021-12-16 21:34:30

您可以重新激活通过将相同的用户详细信息传递给 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"
    }
  ]
}