Claude Platform Docs

刪除訊息批次

$ ant messages:batches delete
DELETE/v1/messages/batches/{message_batch_id}

刪除訊息批次。

訊息批次僅能在處理完成後刪除。若您想刪除進行中的批次,必須先將其取消。

在我們的使用者指南中進一步瞭解 Message Batches API

Parameters
--message-batch-id: string

ID of the Message Batch.

Returns
deleted_message_batch: object{ id, type }
id: string

ID of the Message Batch.

type: "message_batch_deleted"

Deleted object type.

For Message Batches, this is always "message_batch_deleted".

刪除訊息批次
ant messages:batches delete \
  --api-key my-anthropic-api-key \
  --message-batch-id message_batch_id
Returns Examples
Response 200
{
  "id": "msgbatch_013Zva2CMHLNnXjNJJKqJ2EF",
  "type": "message_batch_deleted"
}