addedInput schema / properties / limit / default
Added value: +50
changedInput schema / properties / limit / description
Previous value: -"Max results to return (default 20)"New value: +"Items per page (max 100)"
changedInput schema / properties / limit / type
Previous value: -"number"New value: +"integer"
addedInput schema / properties / offset
Added value: +{
+ "default": 0,
+ "description": "Pagination offset",
+ "type": "integer"
+}
addedInput schema / properties / order
Added value: +{
+ "default": "desc",
+ "description": "Sort order",
+ "enum": [
+ "asc",
+ "desc"
+ ],
+ "type": "string"
+}
addedInput schema / properties / sortBy
Added value: +{
+ "description": "Sort field",
+ "enum": [
+ "date",
+ "amount",
+ "vendor"
+ ],
+ "type": "string"
+}
changedInput schema / properties / status / description
Previous value: -"Filter by match status"New value: +"Filter by status"
addedInput schema / required
Added value: +[
+ "limit",
+ "offset",
+ "order"
+]