我想以编程方式向ASANA添加新用户。我已经拥有OAUTH应用程序和用户令牌。
查看API我无法找到“创建新用户”的方法。
是否可以通过API创建一个简单的新用户?
否则,是否可以通过指定的电子邮件“邀请”新用户?就像你可以把EMAIL和系统发送邀请链接的UI一样!
我尝试过:
https://app.asana.com/api/1.0/workspaces/[WORKSPACEID]/addUser?user=[NEW USER EMAIL]
但我得到了一个不好的回应:
{
"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"
}
]
}
非常感谢
答案 0 :(得分:1)
我从未尝试过这样做,但最近我确实试图通过API将成员添加到项目中。关于它的文档中没有任何内容,我被告知it wasn't a supported API operation。
我猜想如果在文档中没有提到这个功能,那么由于类似的原因它也不受支持。