---
title: "Create queue"
method: POST
path: "/v1/transaction_monitoring/queues"
tags: ["Transaction Monitoring"]
---

# Create queue

`POST /v1/transaction_monitoring/queues`

Creates a new queue for grouping transaction monitoring cases.

## Request body

- CreateQueueRequest — Parameters for creating a queue
  - `name` string, required — Human-readable name of the queue
  - `description` string, nullable — Optional description of the queue
  - `allowed_resolutions` string[], nullable — Resolutions that can be recorded on cases in this queue. Omit or send `null` to use the default list. Values are free-form labels and must be non-empty and unique

## Response `201`

Queue

- Queue — A queue that groups transaction monitoring cases for review
  - `token` string, uuid, required — Globally unique identifier for the queue
  - `name` string, required — Human-readable name of the queue
  - `description` string, nullable, required — Optional description of the queue
  - `allowed_resolutions` string[], required — Resolutions that can be recorded on cases in this queue. Always the effective list: the queue's own values when it defines them, otherwise the default list
  - `created` string, date-time, required — Date and time at which the queue was created
  - `updated` string, date-time, required — Date and time at which the queue was last updated
  - `case_counts` object, required — Number of cases in the queue, broken down by status. A status is omitted when the queue has no cases in that status
    - `OPEN` integer — Number of cases in the queue with status `OPEN`
    - `ASSIGNED` integer — Number of cases in the queue with status `ASSIGNED`
    - `IN_REVIEW` integer — Number of cases in the queue with status `IN_REVIEW`
    - `ESCALATED` integer — Number of cases in the queue with status `ESCALATED`
    - `RESOLVED` integer — Number of cases in the queue with status `RESOLVED`
    - `CLOSED` integer — Number of cases in the queue with status `CLOSED`

## Other responses

- `400` — Bad Request

---

[API](https://skmtc.net/lithic-com/apis/lithic-developer-api.md) · [All operations](https://skmtc.net/lithic-com/apis/lithic-developer-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/lithic-com/lithic-developer-api/revisions/53ab5d4e2adb/schema)
