Retrieve Message Batch results
GET/v1/messages/batches/{message_batch_id}/results
Streams the results of a Message Batch as a .jsonl file.
Each line in the file is a JSON object containing the result of a single request in the Message Batch. Results are not guaranteed to be in the same order as requests. Use the custom_id field to match results to requests.
Learn more about the Message Batches API in our user guide
Parameters
Returns
Retrieve Message Batch results
BatchResultsParams parameters = new() { MessageBatchID = "message_batch_id" };
await foreach (var messageBatchIndividualResponse in client.Messages.Batches.ResultsStreaming(parameters))
{
Console.WriteLine(messageBatchIndividualResponse);
}