You are here

public function BatchApi::createBatch in TMGMT Translator Smartling 8.3

Same name and namespace in other branches
  1. 8.4 vendor/smartling/api-sdk-php/src/Batch/BatchApi.php \Smartling\Batch\BatchApi::createBatch()

Creates a batch.

Parameters

CreateBatchParameters $parameters:

Return value

array

Throws

SmartlingApiException

File

vendor/smartling/api-sdk-php/src/Batch/BatchApi.php, line 70

Class

BatchApi
Class JobsFacadeApi

Namespace

Smartling\Batch

Code

public function createBatch(CreateBatchParameters $parameters) {
  $requestData = $this
    ->getDefaultRequestData('json', $parameters
    ->exportToArray());
  return $this
    ->sendRequest('batches', $requestData, self::HTTP_METHOD_POST);
}