Skip to content

Commit 58dd4a6

Browse files
committed
Add API reference links to parameters.md
1 parent 57da5b9 commit 58dd4a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/parameters.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,28 +3,28 @@
33

44
Request parameters constrain the data an endpoint returns. **All request parameter values must be [URL-encoded](https://en.wikipedia.org/wiki/Percent-encoding)**.
55

6-
The following parameters expect values in a special syntax. For each endpoint's full list of required and optional parameters, visit the API reference.
6+
The following parameters expect values in a special syntax. For each endpoint's full list of required and optional parameters, visit the [API reference](api-reference.md).
77

88
## `select`
99

1010
Example: `field_a,field_b,field_c`
1111

1212
A mandatory comma-separated list of field names. This specifies which fields to return from the endpoint. Not all endpoints accept this parameter.
1313

14-
See the endpoint's response schema in the API reference for the list of valid field names.
14+
See the endpoint's response schema in the [API reference](api-reference.md) for the list of valid field names.
1515

1616
## `where`
1717

1818
Example: `{"and":[{"field":"field_a","is":["gt",90]},{"field":"field_b","is":["eq","SEO"]}]}`
1919

2020
A *filter expression* to narrow down the results. The syntax is described in detail in [Filter syntax](./filter-syntax.md). Not all endpoints accept this parameter.
2121

22-
See the endpoint's parameter description in the API reference for the list of valid field names that can be used in the filter expression. **This may differ from the `select` parameter's field name list.**
22+
See the endpoint's parameter description in the [API reference](api-reference.md) for the list of valid field names that can be used in the filter expression. **This may differ from the `select` parameter's field name list.**
2323

2424
## `order_by`
2525

2626
Example: `field_a:desc,field_b:asc`
2727

2828
Orders the results by the specified field(s) and direction (`desc` or `asc`). Not all endpoints accept this parameter.
2929

30-
See the endpoint's response schema in the API reference for the list of valid field names. This is the same as the `select` parameter's field name list.
30+
See the endpoint's response schema in the [API reference](api-reference.md) for the list of valid field names. This is the same as the `select` parameter's field name list.

0 commit comments

Comments
 (0)