createUploadWithHttpInfo method

Future<Response> createUploadWithHttpInfo(
  1. MmCreateUploadRequest mmCreateUploadRequest
)

Create an upload

Creates a new upload session. Minimum server version: 5.28 ##### Permissions Must have upload_file permission.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> createUploadWithHttpInfo(
  MmCreateUploadRequest mmCreateUploadRequest,
) async {
  // ignore: prefer_const_declarations
  final path = r'/uploads';

  // ignore: prefer_final_locals
  Object? postBody = mmCreateUploadRequest;

  final queryParams = <MmQueryParam>[];
  final headerParams = <String, String>{};
  final formParams = <String, String>{};

  const contentTypes = <String>['application/json'];

  return apiClient.invokeAPI(
    path,
    'POST',
    queryParams,
    postBody,
    headerParams,
    formParams,
    contentTypes.isEmpty ? null : contentTypes.first,
  );
}