ElixirDropbox v0.0.8 ElixirDropbox.FileRequests
Link to this section Summary
Functions
Creates a file request for this user
Returns the specified file request
Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return file requests with destinations in the app folder
Update a file request
Link to this section Functions
Creates a file request for this user.
Example
deadline = %{ “deadline” => “2020-10-12T17:00:00Z” } ElixirDropbox.FileRequests.create client , “cool”, “/Temp”, deadline
More info at: https://www.dropbox.com/developers/documentation/http/documentation#file_requests-create
Returns the specified file request.
Example
ElixirDropbox.FileRequests.get client , “”
More info at: https://www.dropbox.com/developers/documentation/http/documentation#file_requests-get
Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return file requests with destinations in the app folder.
Example
ElixirDropbox.FileRequests.list client
More info at: https://www.dropbox.com/developers/documentation/http/documentation#file_requests-list
Update a file request.
Example
deadline = %{ “deadline” => “2020-10-12T17:00:00Z” } ElixirDropbox.FileRequests.create client, “”, “cool”, “/Temp”, deadline
More info at: https://www.dropbox.com/developers/documentation/http/documentation#file_requests-list