deleteManyFilesApi method
DELETE /{version}/files/{filesIntegrationId}/bulk
Implementation
Future<Object?> deleteManyFilesApi(
{required Object filesIntegrationId,
Map<String, Object?>? query,
Object? body,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/files/{filesIntegrationId}/bulk',
method: 'DELETE',
query: query,
body: body,
headers: headers,
pathParams: <String, Object?>{'filesIntegrationId': filesIntegrationId},
);
}