Class: SibApiV3Sdk::NotesApi
- Inherits:
-
Object
- Object
- SibApiV3Sdk::NotesApi
- Defined in:
- lib/sib-api-v3-sdk/api/notes_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#crm_notes_get(opts = {}) ⇒ NoteList
Get all notes.
-
#crm_notes_get_with_http_info(opts = {}) ⇒ Array<(NoteList, Fixnum, Hash)>
Get all notes.
-
#crm_notes_id_delete(id, opts = {}) ⇒ nil
Delete a note.
-
#crm_notes_id_delete_with_http_info(id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a note.
-
#crm_notes_id_get(id, opts = {}) ⇒ Note
Get a note.
-
#crm_notes_id_get_with_http_info(id, opts = {}) ⇒ Array<(Note, Fixnum, Hash)>
Get a note.
-
#crm_notes_id_patch(id, body, opts = {}) ⇒ nil
Update a note.
-
#crm_notes_id_patch_with_http_info(id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Update a note.
-
#crm_notes_post(body, opts = {}) ⇒ NoteId
Create a note.
-
#crm_notes_post_with_http_info(body, opts = {}) ⇒ Array<(NoteId, Fixnum, Hash)>
Create a note.
-
#initialize(api_client = ApiClient.default) ⇒ NotesApi
constructor
A new instance of NotesApi.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#crm_notes_get(opts = {}) ⇒ NoteList
Get all notes
32 33 34 35 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 32 def crm_notes_get(opts = {}) data, _status_code, _headers = crm_notes_get_with_http_info(opts) data end |
#crm_notes_get_with_http_info(opts = {}) ⇒ Array<(NoteList, Fixnum, Hash)>
Get all notes
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/sib-api-v3-sdk/api/notes_api.rb', line 47 def crm_notes_get_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NotesApi.crm_notes_get ...' end if @api_client.config.client_side_validation && opts[:'entity'] && !['companies', 'deals', 'contacts'].include?(opts[:'entity']) fail ArgumentError, 'invalid value for "entity", must be one of companies, deals, contacts' end if @api_client.config.client_side_validation && opts[:'sort'] && !['asc', 'desc'].include?(opts[:'sort']) fail ArgumentError, 'invalid value for "sort", must be one of asc, desc' end # resource path local_var_path = '/crm/notes' # query parameters query_params = {} query_params[:'entity'] = opts[:'entity'] if !opts[:'entity'].nil? query_params[:'entityIds'] = opts[:'entity_ids'] if !opts[:'entity_ids'].nil? query_params[:'dateFrom'] = opts[:'date_from'] if !opts[:'date_from'].nil? query_params[:'dateTo'] = opts[:'date_to'] if !opts[:'date_to'].nil? query_params[:'offset'] = opts[:'offset'] if !opts[:'offset'].nil? query_params[:'limit'] = opts[:'limit'] if !opts[:'limit'].nil? query_params[:'sort'] = opts[:'sort'] if !opts[:'sort'].nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key', 'partner-key'] 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 => 'NoteList') if @api_client.config.debugging @api_client.config.logger.debug "API called: NotesApi#crm_notes_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#crm_notes_id_delete(id, opts = {}) ⇒ nil
Delete a note
99 100 101 102 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 99 def crm_notes_id_delete(id, opts = {}) crm_notes_id_delete_with_http_info(id, opts) nil end |
#crm_notes_id_delete_with_http_info(id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete a note
108 109 110 111 112 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 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 108 def crm_notes_id_delete_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NotesApi.crm_notes_id_delete ...' 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 NotesApi.crm_notes_id_delete" end # resource path local_var_path = '/crm/notes/{id}'.sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key', 'partner-key'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: NotesApi#crm_notes_id_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#crm_notes_id_get(id, opts = {}) ⇒ Note
Get a note
150 151 152 153 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 150 def crm_notes_id_get(id, opts = {}) data, _status_code, _headers = crm_notes_id_get_with_http_info(id, opts) data end |
#crm_notes_id_get_with_http_info(id, opts = {}) ⇒ Array<(Note, Fixnum, Hash)>
Get a note
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 159 def crm_notes_id_get_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NotesApi.crm_notes_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 NotesApi.crm_notes_id_get" end # resource path local_var_path = '/crm/notes/{id}'.sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['api-key', 'partner-key'] 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 => 'Note') if @api_client.config.debugging @api_client.config.logger.debug "API called: NotesApi#crm_notes_id_get\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#crm_notes_id_patch(id, body, opts = {}) ⇒ nil
Update a note
203 204 205 206 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 203 def crm_notes_id_patch(id, body, opts = {}) crm_notes_id_patch_with_http_info(id, body, opts) nil end |
#crm_notes_id_patch_with_http_info(id, body, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Update a note
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 243 244 245 246 247 248 249 250 251 252 253 254 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 213 def crm_notes_id_patch_with_http_info(id, body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NotesApi.crm_notes_id_patch ...' 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 NotesApi.crm_notes_id_patch" end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling NotesApi.crm_notes_id_patch" end # resource path local_var_path = '/crm/notes/{id}'.sub('{' + 'id' + '}', id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['api-key', 'partner-key'] data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: NotesApi#crm_notes_id_patch\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#crm_notes_post(body, opts = {}) ⇒ NoteId
Create a note
259 260 261 262 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 259 def crm_notes_post(body, opts = {}) data, _status_code, _headers = crm_notes_post_with_http_info(body, opts) data end |
#crm_notes_post_with_http_info(body, opts = {}) ⇒ Array<(NoteId, Fixnum, Hash)>
Create a note
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 |
# File 'lib/sib-api-v3-sdk/api/notes_api.rb', line 268 def crm_notes_post_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: NotesApi.crm_notes_post ...' end # verify the required parameter 'body' is set if @api_client.config.client_side_validation && body.nil? fail ArgumentError, "Missing the required parameter 'body' when calling NotesApi.crm_notes_post" end # resource path local_var_path = '/crm/notes' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(body) auth_names = ['api-key', 'partner-key'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'NoteId') if @api_client.config.debugging @api_client.config.logger.debug "API called: NotesApi#crm_notes_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |