latestOpenAPI 3.0.02026-08-0819201.1 MB

411f9f98c01e

teams

Returns the team based on the specified teamId where the current user is a member.

You need contract.devTeams.get permission to access this resource

get/teams/{team_id}

Path parameters

team_idstring required

Team identifier

Response

OK

metaobject required

Example response

{
  "data": {
    "id": "5b4f337bff4304610483ba67",
    "links": {
      "self": "/v2/teams/5b4f337bff4304610483ba67"
    },
    "attributes": {
      "name": "Team name"
    },
    "relationships": {
      "contract": {
        "data": {
          "id": "5b4f337bff4304610483ba67"
        },
        "links": {
          "self": "/v2/contracts/5b4f337bff4304610483ba67"
        }
      },
      "users": {
        "data": [
          {
            "id": "5b4f337bff4304610483ba67"
          }
        ]
      },
      "components": {
        "data": [
          {
            "id": "5b4f337bff4304610483ba67"
          }
        ]
      }
    }
  },
  "links": {
    "self": "/v2/teams/5b4f337bff4304610483ba67"
  }
}