Claude Platform Docs

메시지 배치 삭제

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

메시지 배치를 삭제합니다.

메시지 배치는 처리가 완료된 후에만 삭제할 수 있습니다. 진행 중인 배치를 삭제하려면 먼저 취소해야 합니다.

Message Batches API에 대한 자세한 내용은 사용자 가이드를 참조하세요.

Parameters
--message-batch-id: string

ID of the Message Batch.

--beta: optional array of AnthropicBeta

Optional header to specify the beta version(s) you want to use.

Returns
beta_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 beta: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"
}