v1ConvaiBatchCallingBatchIdGet method

Future<Response<BatchCallDetailedResponse>> v1ConvaiBatchCallingBatchIdGet({
  1. required String? batchId,
  2. String? xiApiKey,
})

Get A Batch Call By Id. @param batch_id @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.

Implementation

Future<chopper.Response<BatchCallDetailedResponse>>
v1ConvaiBatchCallingBatchIdGet({required String? batchId, String? xiApiKey}) {
  generatedMapping.putIfAbsent(
    BatchCallDetailedResponse,
    () => BatchCallDetailedResponse.fromJsonFactory,
  );

  return _v1ConvaiBatchCallingBatchIdGet(
    batchId: batchId,
    xiApiKey: xiApiKey?.toString(),
  );
}