我想以编程方式向 ASANA 添加一个新用户。我已经拥有 OAUTH 应用程序和用户令牌。
查看 API,我找不到“创建新用户”的方法。
是否可以通过 API 简单地创建新用户?
否则,是否可以通过给定的电子邮件“邀请”新用户?就像从 UI 中您可以放置 EMAIL 和系统发送邀请链接一样!
我试过:
https://app.asana.com/api/1.0/workspaces/[WORKSPACEID]/addUser?user=[NEW USER EMAIL]
但我收到一个 BAD REQUEST 作为回应:
{
"errors": [
{
"message": "Could not parse request data, invalid JSON",
"help": "For more information on API status codes and how to handle them, read the docs on errors: https://asana.com/developers/documentation/getting-started/errors"
}
]
}
非常感谢你