Retrieve a team

Example Request & Response

$ curl https://api.intercom.io/teams/2744328 \
-H 'Authorization:Bearer <Your access token>' \
-H 'Accept: application/json'
HTTP/1.1 200 Ok

{
    "admin_ids": [
        646303,
        814860
    ],
    "id": "2744328",
    "name": "the_a_team",
    "type": "team"
}

You can fetch the details of a single team, containing an array of admins that belong to this team.

Request Path Parameters

ParameterTypeRequired?Description
idStringYesThe unique identifier of a given team.

Response

This will return a Team Object.