Get All Teams - GET /auth/teams (8.6.0 to 8.9.0)

Get details of all teams. Team id (id) is used to create a new project using POST/projects. GET /auth/teams has been depreciated for v9.0.0 and up.

Usage:

  1. GET /auth/teams and get details of all teams
  2. POST /projects and create new project with default configuration settings

URL

/cxrestapi/auth/teams

Method:

GET

Media Type (header):

Authorization: Bearer <access token value>
Accept: application/json;v=1.0

Parameters

None

Success Response:

Code: 200 OK

Error Response:

Code: 400 Bad Request

Sample Response:

[
  {
    "id": "00000000-1111-1111-b111-989c9070eb11",
    "fullName": \\CxServer
  },
  {
    "id": "11111111-2222-448d-b029-989c9070eb22",
    "fullName": \\CxServer\\SP
  },
  {
    "id": "14164327-9e8b-4441-8aaf-4afd49d97c3c",
    "fullName": \\CxServer\\SP\\Company\\Team
  },
  {
    "id": "22222222-2222-448d-b029-989c9070eb22",
    "fullName": \\CxServer\\SP\\Company
  }
]

Notes:

Retrieves details of all teams. If the request fails, it returns an error response.