Can you add multiple users to a team in one call? - API

HOWDY!

Can you add multiple users to a team and assign their roles as well? In one call?

Something like this?

{
“data”: {
“users”: [
{
“user”: “67891”,
“is_admin”: true
},
{
“user”: “12345”,
“is_admin”: true
}
]
}

Any help or information would be greatly appreciated!

Hi @Dillion_Castillo, we don’t have an endpoint to add multiple users to a team we only have the Add a user to a team endpoint.

You could achieve something similar by bundling those requests together using our Submit parallel requests endpoint so that you make one API call

Checkout the docs for Batch requests

1 Like