getTmpContactsWithHttpInfo method

Future<Response> getTmpContactsWithHttpInfo(
  1. List<String> requestBody
)

Get contacts by ids with the current user

Returns an instance of created contact.

Note: This method returns the HTTP Response.

Parameters:

Implementation

Future<Response> getTmpContactsWithHttpInfo(List<String> requestBody,) async {
  // ignore: prefer_const_declarations
  final path = r'/rest/v1/tmp/contact/get';

  // ignore: prefer_final_locals
  Object? postBody = requestBody;

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

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

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