Specify Record List via Query String

Contents

Overview

Refer to the following link for the list of queries that can be used. URL encode the query with UTF-8:
Query String

Specifying A View List With A URL

1
https://{sub-domain}.kintone.com/k/{appId}/?view={viewId}

When creating a new view in the App settings, the view ID can be found in the URL of the view page.

Specifying A Filtered List With A URL

1
https://{sub-domain}.kintone.com/k/{appId}/?query={UTF-8 encoded query}

The following options will not be reflected in the display results:

  • limit (number of records to display)
  • offset (position to start displaying from)
  • order by (display order)

Sample

Consider an app with the following properties:

  • Sub domain: example
  • App ID: 123
  • Field code of the Single-line text field: text_field
  • Field code of the Radio Button field: choice_field

To find records where the Single-line text field is "kintone" and the Radio Button field is "A", use the following query:

1
text_field="kintone" and choice_field in ("A")

URL encode this, and place it as the value for the query, as below:

1
https://example.kintone.com/k/123/?query=text_field%3D%22kintone%22%20and%20choice_field%20in%20(%22A%22)

This does the same filter as the following filter on Kintone:

Limitations

This query can only be used on the desktop.