# getReceivedAppreciation

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

## Operation

| Method | URL |
|---|---|
| GET | https://api.thomas.co/v1/appreciations/received/{eventId} |

| Field | Value |
|---|---|
| operationId | getReceivedAppreciation |
| method | GET |
| server | https://api.thomas.co/v1 |
| path | /appreciations/received/{eventId} |
| tags | `Recognition` |
| summary | Get received appreciation detail |
| badges | None |

## Request Parameters

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

## Request Body

None.

## Responses

| Status | Description | Schema refs |
|---|---|---|
| 200 | Received appreciation detail | #/components/schemas/AppreciationReceivedDetailDto |
| 400 | Malformed eventId path parameter | #/components/schemas/ApiErrorResponseDto |
| 401 | Invalid or missing authentication token (AUTH_TOKEN_INVALID) | #/components/schemas/ApiErrorResponseDto |
| 403 | Caller is not the recipient / row missing (APPRECIATION_FORBIDDEN — no existence leak) | #/components/schemas/ApiErrorResponseDto |

## Artifact Examples

### Response 400 example

```json
{
  "statusCode": 400,
  "message": "Validation failed",
  "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": "Not the recipient of this appreciation",
  "error": "APPRECIATION_FORBIDDEN"
}
```
