...
1top:
2 name: $top
3 in: query
4 description: >-
5 Show only the first N elements, where N is a positive integer. If a value
6 less than 0 is specified, the URI should be considered malformed.
7 type: integer
8 minimum: 0
9 required: false
10skip:
11 name: $skip
12 in: query
13 description: >-
14 Skip the first N elements, where N is a positive integer as specified by
15 this query option. If a value less than 0 is specified, the URI should be
16 considered malformed.
17 type: integer
18 minimum: 0
19 required: false
20search:
21 name: $search
22 in: query
23 description: Free text search on selected entity.
24 type: string
25 required: false
26filter:
27 name: $filter
28 in: query
29 description: >-
30 Causes returning only entities, for those the filter condition evaluates true.
31 type: string
32 required: false
33etag:
34 name: ETag
35 in: header
36 description: Known fingerprint of the entity
37 type: string
38 required: false
39ifmatch:
40 name: If-Match
41 in: header
42 description: >-
43 The request will succeed if the value equals to the current fingerprint
44 of the entity on the server side.
45 type: string
46 required: false
View as plain text