Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用活动的协作系统来管理我的项目,并使用我网站上的 API 添加新任务、新公司和新用户。
我唯一的问题是我无法将新添加的用户添加到我现有的项目成员列表中。
请让我知道我需要调用哪个 API 来将新添加的用户添加到现有项目的成员列表中。
您使用 user_id 有效负载向“/projects/{projectId}/members”发出发布请求。
使用 Active Collab Feather SDK:
$client->post('/projects/100/members', [ "user_id" => $collabId ]);