---
title: "Bulk Set Transcript Client Price"
method: PUT
path: "/api/v1/admin/transcripts/pricing/{transcript_id}/clients/bulk"
tags: ["Admin APIs", "transcripts"]
---

# Bulk Set Transcript Client Price

`PUT /api/v1/admin/transcripts/pricing/{transcript_id}/clients/bulk`

Set the same specific-transcript override across multiple clients at once.

Registered before /{transcript_id}/clients/{client_id} below — FastAPI
matches path templates in registration order, and "bulk" would otherwise
be swallowed by that route's {client_id}: UUID parameter (and 422 on
UUID parsing) if it came first.

## Path parameters

- `transcript_id` string, uuid, required

## Request body

- BulkTranscriptClientPriceRequest — Set the same specific-transcript override across multiple clients at once.
  - `client_ids` string[], required
  - `price` number, required
  - `rationale` string, required

## Response `200`

Successful Response

- BulkTranscriptClientPriceResponse
  - `results` BulkTranscriptClientPriceResult[], required
    - `client_id` string, uuid, required
    - `success` boolean, required
    - `error` string, nullable
  - `total` integer, required
  - `succeeded` integer, required
  - `failed` integer, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/carbonarc/apis/carbon-arc-client-admin-api.md) · [All operations](https://skmtc.net/carbonarc/apis/carbon-arc-client-admin-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/carbonarc/carbon-arc-client-admin-api/revisions/a8ca30023371/schema)
