POST
/
{team_id}
/
projects
/
{project_id}
/
members
Add a new project member
curl --request POST \
  --url https://api.superthread.com/v1/{team_id}/projects/{project_id}/members \
  --header 'Content-Type: application/json' \
  --data '{
  "members": [
    {
      "user_id": "u-dsu0j19",
      "role": "admin"
    }
  ]
}'
This response does not have an example.

Path Parameters

team_id
string
required

Team ID is an alphanumerical string that identifies a Team. This is externally referred to as a "Workspace".

project_id
string
required

Project ID is a numerical string that identifies a Project. This is externally referred to as a "Space".

Body

application/json

New member details

The body is of type object.

Response

204

project member successfully added