# getProfileInsights

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

## Operation

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

| Field | Value |
|---|---|
| operationId | getProfileInsights |
| method | GET |
| server | https://api.thomas.co/v1 |
| path | /content/profile-insights/{individualId} |
| tags | `Behaviour` |
| summary | Resolved self-view profile insight cards |
| badges | None |

## Request Parameters

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

## Request Body

None.

## Responses

| Status | Description | Schema refs |
|---|---|---|
| 200 | Resolved cards (app-default order) + nullable floor | #/components/schemas/ProfileInsightCardsResponseDto |
| 400 | Malformed individualId path parameter | #/components/schemas/ApiErrorResponseDto |
| 401 | Invalid or missing authentication token (AUTH_TOKEN_INVALID) | #/components/schemas/ApiErrorResponseDto |
| 403 | Requested another individual (this endpoint is self-view only) — CONTENT_PROFILE_INSIGHTS_FORBIDDEN (403) | #/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 403 example

```json
{
  "statusCode": 403,
  "message": "Cannot access another individual's profile insights",
  "error": "CONTENT_PROFILE_INSIGHTS_FORBIDDEN"
}
```

### Response 422 example

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