Class: DocuSign_eSign::WorkspacesApi
- Inherits:
-
Object
- Object
- DocuSign_eSign::WorkspacesApi
- Defined in:
- lib/docusign_esign/api/workspaces_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_workspace(account_id, workspace) ⇒ Workspace
Create a Workspace Creates a new workspace.
-
#create_workspace_file(account_id, folder_id, workspace_id) ⇒ WorkspaceItem
Creates a workspace file.
-
#create_workspace_file_with_http_info(account_id, folder_id, workspace_id) ⇒ Array<(WorkspaceItem, Fixnum, Hash)>
Creates a workspace file.
-
#create_workspace_with_http_info(account_id, workspace) ⇒ Array<(Workspace, Fixnum, Hash)>
Create a Workspace Creates a new workspace.
-
#delete_workspace(account_id, workspace_id) ⇒ Workspace
Delete Workspace Deletes an existing workspace (logically).
-
#delete_workspace_folder_items(account_id, folder_id, workspace_id, workspace_item_list) ⇒ nil
Deletes workspace one or more specific files/folders from the given folder or root.
-
#delete_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, workspace_item_list) ⇒ Array<(nil, Fixnum, Hash)>
Deletes workspace one or more specific files/folders from the given folder or root.
-
#delete_workspace_with_http_info(account_id, workspace_id) ⇒ Array<(Workspace, Fixnum, Hash)>
Delete Workspace Deletes an existing workspace (logically).
-
#get_workspace(account_id, workspace_id) ⇒ Workspace
Get Workspace Retrives properties about a workspace given a unique workspaceId.
-
#get_workspace_file(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::GetWorkspaceFileOptions.default) ⇒ nil
Get Workspace File Retrieves a workspace file (the binary).
-
#get_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::GetWorkspaceFileOptions.default) ⇒ Array<(nil, Fixnum, Hash)>
Get Workspace File Retrieves a workspace file (the binary).
-
#get_workspace_with_http_info(account_id, workspace_id) ⇒ Array<(Workspace, Fixnum, Hash)>
Get Workspace Retrives properties about a workspace given a unique workspaceId.
-
#initialize(api_client = WorkspacesApi.default) ⇒ WorkspacesApi
constructor
A new instance of WorkspacesApi.
-
#list_workspace_file_pages(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) ⇒ PageImages
List File Pages Retrieves a workspace file as rasterized pages.
-
#list_workspace_file_pages_with_http_info(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) ⇒ Array<(PageImages, Fixnum, Hash)>
List File Pages Retrieves a workspace file as rasterized pages.
-
#list_workspace_folder_items(account_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) ⇒ WorkspaceFolderContents
List Workspace Folder Contents Retrieves workspace folder contents, which can include sub folders and files.
-
#list_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) ⇒ Array<(WorkspaceFolderContents, Fixnum, Hash)>
List Workspace Folder Contents Retrieves workspace folder contents, which can include sub folders and files.
-
#list_workspaces(account_id) ⇒ WorkspaceList
List Workspaces Gets information about the Workspaces that have been created.
-
#list_workspaces_with_http_info(account_id) ⇒ Array<(WorkspaceList, Fixnum, Hash)>
List Workspaces Gets information about the Workspaces that have been created.
-
#update_workspace(account_id, workspace_id, workspace) ⇒ Workspace
Update Workspace Updates information about a specific workspace.
-
#update_workspace_file(account_id, file_id, folder_id, workspace_id) ⇒ WorkspaceItem
Update Workspace File Metadata Updates workspace item metadata for one or more specific files/folders.
-
#update_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id) ⇒ Array<(WorkspaceItem, Fixnum, Hash)>
Update Workspace File Metadata Updates workspace item metadata for one or more specific files/folders.
-
#update_workspace_with_http_info(account_id, workspace_id, workspace) ⇒ Array<(Workspace, Fixnum, Hash)>
Update Workspace Updates information about a specific workspace.
Constructor Details
#initialize(api_client = WorkspacesApi.default) ⇒ WorkspacesApi
Returns a new instance of WorkspacesApi.
80 81 82 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 80 def initialize(api_client = WorkspacesApi.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
78 79 80 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 78 def api_client @api_client end |
Instance Method Details
#create_workspace(account_id, workspace) ⇒ Workspace
Create a Workspace Creates a new workspace.
89 90 91 92 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 89 def create_workspace(account_id, workspace) data, _status_code, _headers = create_workspace_with_http_info(account_id, workspace) return data end |
#create_workspace_file(account_id, folder_id, workspace_id) ⇒ WorkspaceItem
Creates a workspace file. This method adds a file to a workspace.
141 142 143 144 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 141 def create_workspace_file(account_id, folder_id, workspace_id) data, _status_code, _headers = create_workspace_file_with_http_info(account_id, folder_id, workspace_id) return data end |
#create_workspace_file_with_http_info(account_id, folder_id, workspace_id) ⇒ Array<(WorkspaceItem, Fixnum, Hash)>
Creates a workspace file. This method adds a file to a workspace.
152 153 154 155 156 157 158 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 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 152 def create_workspace_file_with_http_info(account_id, folder_id, workspace_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.create_workspace_file ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.create_workspace_file" if account_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.create_workspace_file" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.create_workspace_file" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}/files".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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 => 'WorkspaceItem') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#create_workspace_file\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#create_workspace_with_http_info(account_id, workspace) ⇒ Array<(Workspace, Fixnum, Hash)>
Create a Workspace Creates a new workspace.
99 100 101 102 103 104 105 106 107 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 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 99 def create_workspace_with_http_info(account_id, workspace) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.create_workspace ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.create_workspace" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces".sub('{format}','json').sub('{' + 'accountId' + '}', account_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']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(workspace) auth_names = [] 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 => 'Workspace') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#create_workspace\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_workspace(account_id, workspace_id) ⇒ Workspace
Delete Workspace Deletes an existing workspace (logically).
197 198 199 200 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 197 def delete_workspace(account_id, workspace_id) data, _status_code, _headers = delete_workspace_with_http_info(account_id, workspace_id) return data end |
#delete_workspace_folder_items(account_id, folder_id, workspace_id, workspace_item_list) ⇒ nil
Deletes workspace one or more specific files/folders from the given folder or root. This method deletes one or more files or sub-folders from a workspace folder or root. Note: To delete items from a workspace, the ‘status` of the workspace must be `active`.
252 253 254 255 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 252 def delete_workspace_folder_items(account_id, folder_id, workspace_id, workspace_item_list) delete_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, workspace_item_list) return nil end |
#delete_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, workspace_item_list) ⇒ Array<(nil, Fixnum, Hash)>
Deletes workspace one or more specific files/folders from the given folder or root. This method deletes one or more files or sub-folders from a workspace folder or root. Note: To delete items from a workspace, the `status` of the workspace must be `active`.
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 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 264 def delete_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, workspace_item_list) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.delete_workspace_folder_items ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.delete_workspace_folder_items" if account_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.delete_workspace_folder_items" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.delete_workspace_folder_items" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(workspace_item_list) auth_names = [] 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: WorkspacesApi#delete_workspace_folder_items\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_workspace_with_http_info(account_id, workspace_id) ⇒ Array<(Workspace, Fixnum, Hash)>
Delete Workspace Deletes an existing workspace (logically).
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 243 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 207 def delete_workspace_with_http_info(account_id, workspace_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.delete_workspace ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.delete_workspace" if account_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.delete_workspace" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] 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, :return_type => 'Workspace') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#delete_workspace\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_workspace(account_id, workspace_id) ⇒ Workspace
Get Workspace Retrives properties about a workspace given a unique workspaceId.
308 309 310 311 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 308 def get_workspace(account_id, workspace_id) data, _status_code, _headers = get_workspace_with_http_info(account_id, workspace_id) return data end |
#get_workspace_file(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::GetWorkspaceFileOptions.default) ⇒ nil
Get Workspace File Retrieves a workspace file (the binary).
364 365 366 367 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 364 def get_workspace_file(account_id, file_id, folder_id, workspace_id, = DocuSign_eSign::GetWorkspaceFileOptions.default) get_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id, ) return nil end |
#get_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::GetWorkspaceFileOptions.default) ⇒ Array<(nil, Fixnum, Hash)>
Get Workspace File Retrieves a workspace file (the binary).
377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 377 def get_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id, = DocuSign_eSign::GetWorkspaceFileOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.get_workspace_file ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.get_workspace_file" if account_id.nil? # verify the required parameter 'file_id' is set fail ArgumentError, "Missing the required parameter 'file_id' when calling WorkspacesApi.get_workspace_file" if file_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.get_workspace_file" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.get_workspace_file" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}/files/{fileId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'fileId' + '}', file_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_id.to_s) # query parameters query_params = {} query_params[:'is_download'] = .is_download if !.is_download.nil? query_params[:'pdf_version'] = .pdf_version if !.pdf_version.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['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) if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#get_workspace_file\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_workspace_with_http_info(account_id, workspace_id) ⇒ Array<(Workspace, Fixnum, Hash)>
Get Workspace Retrives properties about a workspace given a unique workspaceId.
318 319 320 321 322 323 324 325 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 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 318 def get_workspace_with_http_info(account_id, workspace_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.get_workspace ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.get_workspace" if account_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.get_workspace" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # 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 => 'Workspace') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#get_workspace\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_workspace_file_pages(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) ⇒ PageImages
List File Pages Retrieves a workspace file as rasterized pages.
428 429 430 431 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 428 def list_workspace_file_pages(account_id, file_id, folder_id, workspace_id, = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) data, _status_code, _headers = list_workspace_file_pages_with_http_info(account_id, file_id, folder_id, workspace_id, ) return data end |
#list_workspace_file_pages_with_http_info(account_id, file_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) ⇒ Array<(PageImages, Fixnum, Hash)>
List File Pages Retrieves a workspace file as rasterized pages.
441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 441 def list_workspace_file_pages_with_http_info(account_id, file_id, folder_id, workspace_id, = DocuSign_eSign::ListWorkspaceFilePagesOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.list_workspace_file_pages ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.list_workspace_file_pages" if account_id.nil? # verify the required parameter 'file_id' is set fail ArgumentError, "Missing the required parameter 'file_id' when calling WorkspacesApi.list_workspace_file_pages" if file_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.list_workspace_file_pages" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.list_workspace_file_pages" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}/files/{fileId}/pages".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'fileId' + '}', file_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'dpi'] = .dpi if !.dpi.nil? query_params[:'max_height'] = .max_height if !.max_height.nil? query_params[:'max_width'] = .max_width if !.max_width.nil? query_params[:'start_position'] = .start_position if !.start_position.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['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 => 'PageImages') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#list_workspace_file_pages\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_workspace_folder_items(account_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) ⇒ WorkspaceFolderContents
List Workspace Folder Contents Retrieves workspace folder contents, which can include sub folders and files.
495 496 497 498 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 495 def list_workspace_folder_items(account_id, folder_id, workspace_id, = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) data, _status_code, _headers = list_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, ) return data end |
#list_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, options = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) ⇒ Array<(WorkspaceFolderContents, Fixnum, Hash)>
List Workspace Folder Contents Retrieves workspace folder contents, which can include sub folders and files.
507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 507 def list_workspace_folder_items_with_http_info(account_id, folder_id, workspace_id, = DocuSign_eSign::ListWorkspaceFolderItemsOptions.default) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.list_workspace_folder_items ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.list_workspace_folder_items" if account_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.list_workspace_folder_items" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.list_workspace_folder_items" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_id.to_s) # query parameters query_params = {} query_params[:'count'] = .count if !.count.nil? query_params[:'include_files'] = .include_files if !.include_files.nil? query_params[:'include_sub_folders'] = .include_sub_folders if !.include_sub_folders.nil? query_params[:'include_thumbnails'] = .include_thumbnails if !.include_thumbnails.nil? query_params[:'include_user_detail'] = .include_user_detail if !.include_user_detail.nil? query_params[:'start_position'] = .start_position if !.start_position.nil? query_params[:'workspace_user_id'] = .workspace_user_id if !.workspace_user_id.nil? # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['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 => 'WorkspaceFolderContents') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#list_workspace_folder_items\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_workspaces(account_id) ⇒ WorkspaceList
List Workspaces Gets information about the Workspaces that have been created.
558 559 560 561 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 558 def list_workspaces(account_id) data, _status_code, _headers = list_workspaces_with_http_info(account_id) return data end |
#list_workspaces_with_http_info(account_id) ⇒ Array<(WorkspaceList, Fixnum, Hash)>
List Workspaces Gets information about the Workspaces that have been created.
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 567 def list_workspaces_with_http_info(account_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.list_workspaces ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.list_workspaces" if account_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces".sub('{format}','json').sub('{' + 'accountId' + '}', account_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']) # 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 => 'WorkspaceList') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#list_workspaces\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_workspace(account_id, workspace_id, workspace) ⇒ Workspace
Update Workspace Updates information about a specific workspace.
609 610 611 612 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 609 def update_workspace(account_id, workspace_id, workspace) data, _status_code, _headers = update_workspace_with_http_info(account_id, workspace_id, workspace) return data end |
#update_workspace_file(account_id, file_id, folder_id, workspace_id) ⇒ WorkspaceItem
Update Workspace File Metadata Updates workspace item metadata for one or more specific files/folders.
665 666 667 668 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 665 def update_workspace_file(account_id, file_id, folder_id, workspace_id) data, _status_code, _headers = update_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id) return data end |
#update_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id) ⇒ Array<(WorkspaceItem, Fixnum, Hash)>
Update Workspace File Metadata Updates workspace item metadata for one or more specific files/folders.
677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 677 def update_workspace_file_with_http_info(account_id, file_id, folder_id, workspace_id) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.update_workspace_file ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.update_workspace_file" if account_id.nil? # verify the required parameter 'file_id' is set fail ArgumentError, "Missing the required parameter 'file_id' when calling WorkspacesApi.update_workspace_file" if file_id.nil? # verify the required parameter 'folder_id' is set fail ArgumentError, "Missing the required parameter 'folder_id' when calling WorkspacesApi.update_workspace_file" if folder_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.update_workspace_file" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}/folders/{folderId}/files/{fileId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'fileId' + '}', file_id.to_s).sub('{' + 'folderId' + '}', folder_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = [] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'WorkspaceItem') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#update_workspace_file\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_workspace_with_http_info(account_id, workspace_id, workspace) ⇒ Array<(Workspace, Fixnum, Hash)>
Update Workspace Updates information about a specific workspace.
620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 |
# File 'lib/docusign_esign/api/workspaces_api.rb', line 620 def update_workspace_with_http_info(account_id, workspace_id, workspace) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkspacesApi.update_workspace ..." end # verify the required parameter 'account_id' is set fail ArgumentError, "Missing the required parameter 'account_id' when calling WorkspacesApi.update_workspace" if account_id.nil? # verify the required parameter 'workspace_id' is set fail ArgumentError, "Missing the required parameter 'workspace_id' when calling WorkspacesApi.update_workspace" if workspace_id.nil? # resource path local_var_path = "/v2.1/accounts/{accountId}/workspaces/{workspaceId}".sub('{format}','json').sub('{' + 'accountId' + '}', account_id.to_s).sub('{' + 'workspaceId' + '}', workspace_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']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(workspace) auth_names = [] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Workspace') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkspacesApi#update_workspace\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |