# getColleagueProfileInsights

Source: /openapi/thomas-federated.openapi.json

## Operation

| Method | URL |
|---|---|
| GET | https://api.thomas.co/v1/content/colleague-profile-insights/{companyIndividualId} |

| Field | Value |
|---|---|
| operationId | getColleagueProfileInsights |
| method | GET |
| server | https://api.thomas.co/v1 |
| path | /content/colleague-profile-insights/{companyIndividualId} |
| tags | `Behaviour` |
| summary | Resolved other-perspective (manager) profile insight cards for a colleague |
| badges | None |

## Request Parameters

| Name | In | Required | Schema | Description |
|---|---|---|---|---|
| companyIndividualId | path | true | string |  |

## Request Body

None.

## Responses

| Status | Description | Schema refs |
|---|---|---|
| 200 | Permitted other-perspective cards (app-default order) + null floor | #/components/schemas/ProfileInsightCardsResponseDto |
| 400 | Malformed companyIndividualId path parameter | #/components/schemas/ApiErrorResponseDto |
| 401 | Invalid or missing authentication token (AUTH_TOKEN_INVALID) | #/components/schemas/ApiErrorResponseDto |
| 404 | The colleague does not exist in the viewer’s tenant — IDENTITY_COMPANY_INDIVIDUAL_NOT_FOUND (404) | #/components/schemas/ApiErrorResponseDto |
| 422 | The behaviour result has no frozen bands — CONTENT_BANDING_NOT_FROZEN (422) | #/components/schemas/ApiErrorResponseDto |

## Artifact Examples

### Response 400 example

```json
{
  "statusCode": 400,
  "message": "Validation failed (uuid is expected)",
  "error": "HTTP_BAD_REQUEST"
}
```

### Response 401 example

```json
{
  "statusCode": 401,
  "message": "Invalid or missing authentication token",
  "error": "AUTH_TOKEN_INVALID"
}
```

### Response 404 example

```json
{
  "statusCode": 404,
  "message": "Colleague not found in the viewer tenant",
  "error": "IDENTITY_COMPANY_INDIVIDUAL_NOT_FOUND"
}
```

### Response 422 example

```json
{
  "statusCode": 422,
  "message": "The behaviour result has no frozen bands",
  "error": "CONTENT_BANDING_NOT_FROZEN"
}
```
