createEndpointsScanColumnWithHttpInfo method

Future<Response> createEndpointsScanColumnWithHttpInfo(
  1. String companyId,
  2. String endpointId,
  3. EndpointsInput endpointsInput
)

POST /companies/{company_id}/endpoints/{endpoint_id}/scan_column

Note: This method returns the HTTP Response.

Parameters:

  • String companyId (required): Unique identifier for the Company

  • String endpointId (required): Unique identifier for the Endpoint

  • EndpointsInput endpointsInput (required):

Implementation

Future<Response> createEndpointsScanColumnWithHttpInfo(String companyId, String endpointId, EndpointsInput endpointsInput,) async {
  // ignore: prefer_const_declarations
  final path = r'/companies/{company_id}/endpoints/{endpoint_id}/scan_column'
    .replaceAll('{company_id}', companyId)
    .replaceAll('{endpoint_id}', endpointId);

  // ignore: prefer_final_locals
  Object? postBody = endpointsInput;

  final queryParams = <QueryParam>[];
  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,
  );
}