Method: Cloudinary::Api.upload_mappings

Defined in:
lib/cloudinary/api.rb

.upload_mappings(options = {}) ⇒ Cloudinary::Api::Response

Lists upload mappings by folder and its mapped template (URL).

Parameters:

  • options (Hash) (defaults to: {})

    The optional parameters. See the Admin API documentation.

Returns:

Raises:

See Also:



759
760
761
762
# File 'lib/cloudinary/api.rb', line 759

def self.upload_mappings(options={})
  params = only(options, :next_cursor, :max_results)
  call_api(:get, :upload_mappings, params, options)
end