- Update a team's members
You can replace the set of teammates who belong to a team. Send the full list of teammates the team should end up with — any teammate currently on the team and missing from the list is removed. This makes the endpoint safe to call on a schedule to keep Intercom in step with an external rota or workforce management system, since sending an unchanged list makes no changes at all.
A token that acts on behalf of a teammate carries that teammate's permissions: they must be able to manage teams, and any team or teammate their access is restricted from remains out of reach here.
Preview Intercom API version. Used for closed beta endpoints or other features under managed availability.
The ids of every teammate who should be a member of the team. Must contain at least one id, and no more than 1000.
[ 493881, 493882 ]
Admin priority levels for the team
- The production API serverhttps://api.intercom.io/teams/{id}
- The european API serverhttps://api.eu.intercom.io/teams/{id}
- The australian API serverhttps://api.au.intercom.io/teams/{id}
curl -i -X PUT \
https://api.intercom.io/teams/123 \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'Intercom-Version: preview' \
-d '{
"admin_ids": [
493881,
493882
]
}'successful
Admin priority levels for the team
{ "type": "team", "id": "991267902", "name": "team 1", "admin_ids": [ 493881, 493882 ] }