Skip to main content
POST
/
poolside
/
v1
/
teams
/
{team_id}
/
members
/
add
Add team members
curl --request POST \
  --url https://api.example.com/poolside/v1/teams/{team_id}/members/add \
  --header 'Content-Type: application/json' \
  --data '
{
  "user_ids": [
    "<string>"
  ]
}
'
{
  "added": 123,
  "removed": 123,
  "$schema": "<string>"
}

Path Parameters

team_id
string
required

Body

application/json
user_ids
string[]

list of user IDs

Response

OK

added
integer<int64>
required
removed
integer<int64>
required
$schema
string<uri>
read-only

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/BulkStats.json"