Class: DocuSign_Rooms::FormGroupFormsApi
- Inherits:
-
Object
- Object
- DocuSign_Rooms::FormGroupFormsApi
- Defined in:
- lib/docusign_rooms/api/form_group_forms_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_form_group_forms(form_group_id, account_id, options = DocuSign_Rooms::GetFormGroupFormsOptions.default) ⇒ FormGroupFormList
Gets the user’s form group’s forms.
-
#get_form_group_forms_with_http_info(form_group_id, account_id, options = DocuSign_Rooms::GetFormGroupFormsOptions.default) ⇒ Array<(FormGroupFormList, Fixnum, Hash)>
Gets the user's form group's forms.
-
#initialize(api_client = FormGroupFormsApi.default) ⇒ FormGroupFormsApi
constructor
A new instance of FormGroupFormsApi.
Constructor Details
#initialize(api_client = FormGroupFormsApi.default) ⇒ FormGroupFormsApi
Returns a new instance of FormGroupFormsApi.
32 33 34 |
# File 'lib/docusign_rooms/api/form_group_forms_api.rb', line 32 def initialize(api_client = FormGroupFormsApi.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
30 31 32 |
# File 'lib/docusign_rooms/api/form_group_forms_api.rb', line 30 def api_client @api_client end |
Instance Method Details
#get_form_group_forms(form_group_id, account_id, options = DocuSign_Rooms::GetFormGroupFormsOptions.default) ⇒ FormGroupFormList
Gets the user’s form group’s forms. Get forms of the specified form group.
42 43 44 45 |
# File 'lib/docusign_rooms/api/form_group_forms_api.rb', line 42 def get_form_group_forms(form_group_id, account_id, = DocuSign_Rooms::GetFormGroupFormsOptions.default) data, _status_code, _headers = get_form_group_forms_with_http_info(form_group_id, account_id, ) return data end |
#get_form_group_forms_with_http_info(form_group_id, account_id, options = DocuSign_Rooms::GetFormGroupFormsOptions.default) ⇒ Array<(FormGroupFormList, Fixnum, Hash)>
Gets the user's form group's forms. Get forms of the specified form group.
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 |
# File 'lib/docusign_rooms/api/form_group_forms_api.rb', line 53 def get_form_group_forms_with_http_info(form_group_id, account_id, = DocuSign_Rooms::GetFormGroupFormsOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: FormGroupFormsApi.get_form_group_forms ..." end # verify the required parameter 'form_group_id' is set fail ArgumentError, "Missing the required parameter 'form_group_id' when calling FormGroupFormsApi.get_form_group_forms" if form_group_id.nil? # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling FormGroupFormsApi.get_form_group_forms" if account_id.nil? # resource path local_var_path = "/v2/accounts/{accountId}/form_groups/{formGroupId}/forms".sub('{format}','json').sub('{' + 'formGroupId' + '}', form_group_id.to_s).sub('{' + 'accountId' + '}', account_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'startPosition'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['text/plain', 'application/json', 'text/json', 'application/xml', 'text/xml']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json-patch+json', 'application/json', 'text/json', 'application/*+json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'FormGroupFormList') if @api_client.config.debugging @api_client.config.logger.debug "API called: FormGroupFormsApi#get_form_group_forms\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |