apiV3CustomerJobApplicationListWithHttpInfo method

Future<Response> apiV3CustomerJobApplicationListWithHttpInfo(
  1. String jobPostId
)

Performs an HTTP 'GET /api/v3/customer/job/{job_post_id}/application' operation and returns the Response. Parameters:

  • String jobPostId (required):

Implementation

Future<Response> apiV3CustomerJobApplicationListWithHttpInfo(String jobPostId,) async {
  // ignore: prefer_const_declarations
  final path = r'/api/v3/customer/job/{job_post_id}/application'
    .replaceAll('{job_post_id}', jobPostId);

  // ignore: prefer_final_locals
  Object? postBody;

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

  const contentTypes = <String>[];


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