credV2CredentialsAssertionsBulkCreateWithHttpInfo method

Future<Response> credV2CredentialsAssertionsBulkCreateWithHttpInfo(
  1. String entityId
)

Performs an HTTP 'POST /api/cred/v2/credentials/{entity_id}/assertions/bulk/' operation and returns the Response. Parameters:

Implementation

Future<Response> credV2CredentialsAssertionsBulkCreateWithHttpInfo(String entityId,) async {
  // ignore: prefer_const_declarations
  final path = r'/api/cred/v2/credentials/{entity_id}/assertions/bulk/'
    .replaceAll('{entity_id}', entityId);

  // ignore: prefer_final_locals
  Object? postBody;

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

  const contentTypes = <String>[];


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