Class: FountainPartnerApiClient::DefaultApi

Inherits:
Object
  • Object
show all
Defined in:
lib/fountain_partner_api_client/api/default_api.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(api_client = ApiClient.default) ⇒ DefaultApi

Returns a new instance of DefaultApi.



19
20
21
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 19

def initialize(api_client = ApiClient.default)
  @api_client = api_client
end

Instance Attribute Details

#api_clientObject

Returns the value of attribute api_client.



17
18
19
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 17

def api_client
  @api_client
end

Instance Method Details

#v1_partners_id_applicants_applicant_id_details_post(applicant_id, id, opts = {}) ⇒ Object

Create Applicant Details

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Object)


28
29
30
31
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 28

def v1_partners_id_applicants_applicant_id_details_post(applicant_id, id, opts = {})
  data, _status_code, _headers = v1_partners_id_applicants_applicant_id_details_post_with_http_info(applicant_id, id, opts)
  data
end

#v1_partners_id_applicants_applicant_id_details_post_with_http_info(applicant_id, id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Create Applicant Details

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Array<(Object, Integer, Hash)>)

    Object data, response status code and response headers



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 39

def v1_partners_id_applicants_applicant_id_details_post_with_http_info(applicant_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DefaultApi.v1_partners_id_applicants_applicant_id_details_post ...'
  end
  # verify the required parameter 'applicant_id' is set
  if @api_client.config.client_side_validation && applicant_id.nil?
    fail ArgumentError, "Missing the required parameter 'applicant_id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_details_post"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_details_post"
  end
  # resource path
  local_var_path = '/v1/partners/{id}/applicants/{applicant_id}/details'.sub('{' + 'applicant_id' + '}', CGI.escape(applicant_id.to_s)).sub('{' + 'id' + '}', CGI.escape(id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'v1_partners_id_applicants_applicant_id_details_post_request'])

  # return_type
  return_type = opts[:debug_return_type] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['ApiKeyAuth']

  new_options = opts.merge(
    :operation => :"DefaultApi.v1_partners_id_applicants_applicant_id_details_post",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DefaultApi#v1_partners_id_applicants_applicant_id_details_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#v1_partners_id_applicants_applicant_id_put(applicant_id, id, opts = {}) ⇒ V1PartnersIdApplicantsApplicantIdPut200Response

Update Applicant

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:



102
103
104
105
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 102

def v1_partners_id_applicants_applicant_id_put(applicant_id, id, opts = {})
  data, _status_code, _headers = v1_partners_id_applicants_applicant_id_put_with_http_info(applicant_id, id, opts)
  data
end

#v1_partners_id_applicants_applicant_id_put_with_http_info(applicant_id, id, opts = {}) ⇒ Array<(V1PartnersIdApplicantsApplicantIdPut200Response, Integer, Hash)>

Update Applicant

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:



113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 113

def v1_partners_id_applicants_applicant_id_put_with_http_info(applicant_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DefaultApi.v1_partners_id_applicants_applicant_id_put ...'
  end
  # verify the required parameter 'applicant_id' is set
  if @api_client.config.client_side_validation && applicant_id.nil?
    fail ArgumentError, "Missing the required parameter 'applicant_id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_put"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_put"
  end
  # resource path
  local_var_path = '/v1/partners/{id}/applicants/{applicant_id}'.sub('{' + 'applicant_id' + '}', CGI.escape(applicant_id.to_s)).sub('{' + 'id' + '}', CGI.escape(id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'v1_partners_id_applicants_applicant_id_put_request'])

  # return_type
  return_type = opts[:debug_return_type] || 'V1PartnersIdApplicantsApplicantIdPut200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['ApiKeyAuth']

  new_options = opts.merge(
    :operation => :"DefaultApi.v1_partners_id_applicants_applicant_id_put",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DefaultApi#v1_partners_id_applicants_applicant_id_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#v1_partners_id_applicants_applicant_id_status_post(applicant_id, id, opts = {}) ⇒ Object

Create Applicant Status

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Object)


176
177
178
179
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 176

def v1_partners_id_applicants_applicant_id_status_post(applicant_id, id, opts = {})
  data, _status_code, _headers = v1_partners_id_applicants_applicant_id_status_post_with_http_info(applicant_id, id, opts)
  data
end

#v1_partners_id_applicants_applicant_id_status_post_with_http_info(applicant_id, id, opts = {}) ⇒ Array<(Object, Integer, Hash)>

Create Applicant Status

Parameters:

  • applicant_id (String)
  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Array<(Object, Integer, Hash)>)

    Object data, response status code and response headers



187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 187

def v1_partners_id_applicants_applicant_id_status_post_with_http_info(applicant_id, id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DefaultApi.v1_partners_id_applicants_applicant_id_status_post ...'
  end
  # verify the required parameter 'applicant_id' is set
  if @api_client.config.client_side_validation && applicant_id.nil?
    fail ArgumentError, "Missing the required parameter 'applicant_id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_status_post"
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DefaultApi.v1_partners_id_applicants_applicant_id_status_post"
  end
  # resource path
  local_var_path = '/v1/partners/{id}/applicants/{applicant_id}/status'.sub('{' + 'applicant_id' + '}', CGI.escape(applicant_id.to_s)).sub('{' + 'id' + '}', CGI.escape(id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'v1_partners_id_applicants_applicant_id_status_post_request'])

  # return_type
  return_type = opts[:debug_return_type] || 'Object'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['ApiKeyAuth']

  new_options = opts.merge(
    :operation => :"DefaultApi.v1_partners_id_applicants_applicant_id_status_post",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DefaultApi#v1_partners_id_applicants_applicant_id_status_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#v1_partners_id_get(id, opts = {}) ⇒ V1PartnersIdGet200Response

Show Partner

Parameters:

  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :format (Object)
  • :partner (Object)

Returns:



250
251
252
253
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 250

def v1_partners_id_get(id, opts = {})
  data, _status_code, _headers = v1_partners_id_get_with_http_info(id, opts)
  data
end

#v1_partners_id_get_with_http_info(id, opts = {}) ⇒ Array<(V1PartnersIdGet200Response, Integer, Hash)>

Show Partner

Parameters:

  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

  • :format (Object)
  • :partner (Object)

Returns:

  • (Array<(V1PartnersIdGet200Response, Integer, Hash)>)

    V1PartnersIdGet200Response data, response status code and response headers



261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 261

def v1_partners_id_get_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DefaultApi.v1_partners_id_get ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DefaultApi.v1_partners_id_get"
  end
  # resource path
  local_var_path = '/v1/partners/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}
  query_params[:'format'] = opts[:'format'] if !opts[:'format'].nil?
  query_params[:'partner'] = opts[:'partner'] if !opts[:'partner'].nil?

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json'])

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body]

  # return_type
  return_type = opts[:debug_return_type] || 'V1PartnersIdGet200Response'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['ApiKeyAuth']

  new_options = opts.merge(
    :operation => :"DefaultApi.v1_partners_id_get",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DefaultApi#v1_partners_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end

#v1_partners_id_put(id, opts = {}) ⇒ V1PartnersIdGet200Response1

Update Partner

Parameters:

  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:



316
317
318
319
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 316

def v1_partners_id_put(id, opts = {})
  data, _status_code, _headers = v1_partners_id_put_with_http_info(id, opts)
  data
end

#v1_partners_id_put_with_http_info(id, opts = {}) ⇒ Array<(V1PartnersIdGet200Response1, Integer, Hash)>

Update Partner

Parameters:

  • id (String)
  • opts (Hash) (defaults to: {})

    the optional parameters

Options Hash (opts):

Returns:

  • (Array<(V1PartnersIdGet200Response1, Integer, Hash)>)

    V1PartnersIdGet200Response1 data, response status code and response headers



326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
# File 'lib/fountain_partner_api_client/api/default_api.rb', line 326

def v1_partners_id_put_with_http_info(id, opts = {})
  if @api_client.config.debugging
    @api_client.config.logger.debug 'Calling API: DefaultApi.v1_partners_id_put ...'
  end
  # verify the required parameter 'id' is set
  if @api_client.config.client_side_validation && id.nil?
    fail ArgumentError, "Missing the required parameter 'id' when calling DefaultApi.v1_partners_id_put"
  end
  # resource path
  local_var_path = '/v1/partners/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s))

  # query parameters
  query_params = opts[:query_params] || {}

  # header parameters
  header_params = opts[:header_params] || {}
  # HTTP header 'Accept' (if needed)
  header_params['Accept'] = @api_client.select_header_accept(['application/json', 'text/html'])
  # HTTP header 'Content-Type'
  content_type = @api_client.select_header_content_type(['application/json'])
  if !content_type.nil?
      header_params['Content-Type'] = content_type
  end

  # form parameters
  form_params = opts[:form_params] || {}

  # http body (model)
  post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'v1_partners_id_get_request'])

  # return_type
  return_type = opts[:debug_return_type] || 'V1PartnersIdGet200Response1'

  # auth_names
  auth_names = opts[:debug_auth_names] || ['ApiKeyAuth']

  new_options = opts.merge(
    :operation => :"DefaultApi.v1_partners_id_put",
    :header_params => header_params,
    :query_params => query_params,
    :form_params => form_params,
    :body => post_body,
    :auth_names => auth_names,
    :return_type => return_type
  )

  data, status_code, headers = @api_client.call_api(:PUT, local_var_path, new_options)
  if @api_client.config.debugging
    @api_client.config.logger.debug "API called: DefaultApi#v1_partners_id_put\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
  end
  return data, status_code, headers
end