Skip to content

Commit ba3f806

Browse files
committed
Add 'modified_before/after' and 'dates_are_gmt' parameters.
These parameters are added to the endpoints for retrieving products, orders and coupons.
1 parent 47eecbc commit ba3f806

File tree

3 files changed

+72
-63
lines changed

3 files changed

+72
-63
lines changed

source/includes/wp-api-v3/_coupons.md

+17-14
Original file line numberDiff line numberDiff line change
@@ -392,20 +392,23 @@ woocommerce.get("coupons").parsed_response
392392

393393
#### Available parameters ####
394394

395-
| Parameter | Type | Description |
396-
| ---------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
397-
| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. |
398-
| `page` | integer | Current page of the collection. Default is `1`. |
399-
| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. |
400-
| `search` | string | Limit results to those matching a string. |
401-
| `after` | string | Limit response to resources published after a given ISO8601 compliant date. |
402-
| `before` | string | Limit response to resources published before a given ISO8601 compliant date. |
403-
| `exclude` | array | Ensure result set excludes specific IDs. |
404-
| `include` | array | Limit result set to specific ids. |
405-
| `offset` | integer | Offset the result set by a specific number of items. |
406-
| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. |
407-
| `orderby` | string | Sort collection by object attribute. Options: `date`, `id`, `include`, `title` and `slug`. Default is `date`. |
408-
| `code` | string | Limit result set to resources with a specific code. |
395+
| Parameter | Type | Description |
396+
| ----------------- | ------- | ---------------------------------------------------------------------------------------------------------------------------- |
397+
| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. |
398+
| `page` | integer | Current page of the collection. Default is `1`. |
399+
| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. |
400+
| `search` | string | Limit results to those matching a string. |
401+
| `after` | string | Limit response to resources published after a given ISO8601 compliant date. |
402+
| `before` | string | Limit response to resources published before a given ISO8601 compliant date. |
403+
| `modified_after` | string | Limit response to resources modified after a given ISO8601 compliant date. |
404+
| `modified_before` | string | Limit response to resources modified after a given ISO8601 compliant date. |
405+
| `dates_are_gmt` | boolean | Whether to consider GMT post dates when limiting response by published or modified date. |
406+
| `exclude` | array | Ensure result set excludes specific IDs. |
407+
| `include` | array | Limit result set to specific ids. |
408+
| `offset` | integer | Offset the result set by a specific number of items. |
409+
| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. |
410+
| `orderby` | string | Sort collection by object attribute. Options: `date`, `id`, `include`, `title` and `slug`. Default is `date`. |
411+
| `code` | string | Limit result set to resources with a specific code. |
409412

410413
## Update a coupon ##
411414

source/includes/wp-api-v3/_orders.md

+22-19
Original file line numberDiff line numberDiff line change
@@ -1187,25 +1187,28 @@ woocommerce.get("orders").parsed_response
11871187

11881188
#### Available parameters ####
11891189

1190-
| Parameter | Type | Description |
1191-
|------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
1192-
| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. |
1193-
| `page` | integer | Current page of the collection. Default is `1`. |
1194-
| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. |
1195-
| `search` | string | Limit results to those matching a string. |
1196-
| `after` | string | Limit response to resources published after a given ISO8601 compliant date. |
1197-
| `before` | string | Limit response to resources published before a given ISO8601 compliant date. |
1198-
| `exclude` | array | Ensure result set excludes specific IDs. |
1199-
| `include` | array | Limit result set to specific ids. |
1200-
| `offset` | integer | Offset the result set by a specific number of items. |
1201-
| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. |
1202-
| `orderby` | string | Sort collection by object attribute. Options: `date`, `id`, `include`, `title` and `slug`. Default is `date`. |
1203-
| `parent` | array | Limit result set to those of particular parent IDs. |
1204-
| `parent_exclude` | array | Limit result set to all items except those of a particular parent ID. |
1205-
| `status` | array | Limit result set to orders assigned a specific status. Options: `any`, `pending`, `processing`, `on-hold`, `completed`, `cancelled`, `refunded`, `failed` and `trash`. Default is `any`. |
1206-
| `customer` | integer | Limit result set to orders assigned a specific customer. |
1207-
| `product` | integer | Limit result set to orders assigned a specific product. |
1208-
| `dp` | integer | Number of decimal points to use in each resource. Default is `2`. |
1190+
| Parameter | Type | Description |
1191+
|-------------------|---------|------------------------------------------------------------------------------------------------------------------------------------------|
1192+
| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. |
1193+
| `page` | integer | Current page of the collection. Default is `1`. |
1194+
| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. |
1195+
| `search` | string | Limit results to those matching a string. |
1196+
| `after` | string | Limit response to resources published after a given ISO8601 compliant date. |
1197+
| `before` | string | Limit response to resources published before a given ISO8601 compliant date. |
1198+
| `modified_after` | string | Limit response to resources modified after a given ISO8601 compliant date. |
1199+
| `modified_before` | string | Limit response to resources modified after a given ISO8601 compliant date. |
1200+
| `dates_are_gmt` | boolean | Whether to consider GMT post dates when limiting response by published or modified date. |
1201+
| `exclude` | array | Ensure result set excludes specific IDs. |
1202+
| `include` | array | Limit result set to specific ids. |
1203+
| `offset` | integer | Offset the result set by a specific number of items. |
1204+
| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. |
1205+
| `orderby` | string | Sort collection by object attribute. Options: `date`, `id`, `include`, `title` and `slug`. Default is `date`. |
1206+
| `parent` | array | Limit result set to those of particular parent IDs. |
1207+
| `parent_exclude` | array | Limit result set to all items except those of a particular parent ID. |
1208+
| `status` | array | Limit result set to orders assigned a specific status. Options: `any`, `pending`, `processing`, `on-hold`, `completed`, `cancelled`, `refunded`, `failed` and `trash`. Default is `any`. |
1209+
| `customer` | integer | Limit result set to orders assigned a specific customer. |
1210+
| `product` | integer | Limit result set to orders assigned a specific product. |
1211+
| `dp` | integer | Number of decimal points to use in each resource. Default is `2`. |
12091212

12101213
## Update an Order ##
12111214

0 commit comments

Comments
 (0)