Method: Unit::Resource::ApplicationFormResource.list_application_forms

Defined in:
lib/unit/api_resources/application_form_resource.rb

.list_application_forms(params = nil) ⇒ UnitResponse, UnitError

List application forms by calling Unit’s API

Parameters:

  • params (ListApplicationFormParams) (defaults to: nil)

Returns:



33
34
35
36
# File 'lib/unit/api_resources/application_form_resource.rb', line 33

def list_application_forms(params = nil)
  response = HttpHelper.get("#{api_url}/application-forms", headers: headers, params: params.to_hash)
  response_handler(response)
end