---
title: "List AI reply suggestions for a conversation."
method: GET
path: "/admin/ai-reply-suggestions"
tags: ["conversations"]
---

# List AI reply suggestions for a conversation.

`GET /admin/ai-reply-suggestions`

Returns a paginated list of AI-generated reply suggestions for the specified conversation.
Suggestions are ordered by creation date in descending order (newest first).
Requires conversation_id query parameter. Supports pagination via offset and limit.
Filter by confidence level with threshold_min and threshold_max (inclusive); if omitted,
threshold_min defaults to 0 and threshold_max defaults to 1.
Admin access required.

## Query parameters

- `Offset` integer
- `Limit` integer
- `ThresholdMin` number, double
- `ThresholdMax` number, double
- `conversation_id` string, required

## Response `200`

HTTP status code 200 and array of AI reply suggestion models with messages

- AiReplySuggestion[]
  - `confidence_level` number, double
  - `conversation_id` integer
  - `created` string
  - `id` integer
  - `last_message_id` integer
  - `message` integer
  - `requesting_user_id` integer
  - `requesting_user_role` string
  - `suggestion_text` string
  - `updated` string

## Other responses

- `400` — Invalid input or state means you're bad
- `401` — Unauthorized error
- `default` — An unknown, unexpected error.

---

[API](https://skmtc.net/outdoorsy/apis/outdoorsy-api-documentation.md) · [All operations](https://skmtc.net/outdoorsy/apis/outdoorsy-api-documentation/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/outdoorsy/outdoorsy-api-documentation/revisions/f0cf8f605ea0/schema)
