Skip to content

Commit

Permalink
Update create_folder method docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Dejan Knezevic committed Nov 8, 2018
1 parent b6b78f5 commit b2c22df
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions docs/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -750,11 +750,12 @@ Examples
# List files in a folder
file_list = folder.list_files()
# Create folder
# Create folder (with a project or parent identifier)
new_folder = api.files.create_folder(
name='new_folder_name',
project='project-identifier',
parent='parent-folder-identifier'
name='new_folder_name', project='project-identifier',
)
new_folder = api.files.create_folder(
name='new_folder_name', parent='parent-folder-identifier'
)
# Copy file to folder
Expand Down

0 comments on commit b2c22df

Please sign in to comment.