Dropbox

Links

    Dropbox API

    Getting access, Developing, Testing

    Back to Dropbox

    File Properties - Properties - Search - Continue

    Once a cursor has been retrieved from :route:properties/search, use this to paginate through all search results.

    Input

    type: object properties: data: type: object description: > cursor: The cursor returned by your last call to :route:`properties/search` or :route:`properties/search/continue`. properties: cursor: type: string description: >- The cursor returned by your last call to :route:`properties/search` or :route:`properties/search/continue`. title: Data

    Output

    type: object description: > matches: A list (possibly empty) of matches for the query. cursor: Pass the cursor into :route:`properties/search/continue` to continue to receive search results. Cursor will be null when there are no more results. properties: matches: type: array description: A list (possibly empty) of matches for the query. items: type: object description: > id: The ID for the matched file or folder. path: The path for the matched file or folder. is_deleted: Whether the file or folder is deleted. property_groups: List of custom property groups associated with the file. properties: path: type: string description: The path for the matched file or folder. is_deleted: type: boolean description: Whether the file or folder is deleted. id: type: string description: The ID for the matched file or folder. property_groups: type: array description: List of custom property groups associated with the file. items: type: object description: > A subset of the property fields described by the corresponding :type:`PropertyGroupTemplate`. Properties are always added to a Dropbox file as a :type:`PropertyGroup`. The possible key names and value types in this group are defined by the corresponding :type:`PropertyGroupTemplate`. template_id: A unique identifier for the associated template. fields: The actual properties associated with the template. There can be up to 32 property types per template. properties: fields: type: array description: >- The actual properties associated with the template. There can be up to 32 property types per template. items: type: object description: > Raw key/value data to be associated with a Dropbox file. Property fields are added to Dropbox files as a :type:`PropertyGroup`. name: Key of the property field associated with a file and template. Keys can be up to 256 bytes. value: Value of the property field associated with a file and template. Values can be up to 1024 bytes. properties: name: type: string description: >- Key of the property field associated with a file and template. Keys can be up to 256 bytes. value: type: string description: >- Value of the property field associated with a file and template. Values can be up to 1024 bytes. template_id: type: string description: A unique identifier for the associated template. cursor: type: string description: >- Pass the cursor into :route:`properties/search/continue` to continue to receive search results. Cursor will be null when there are no more results.