From f9cff8bfcf41df860fc088f5b45ce72c843d804e Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Thu, 4 Jul 2024 15:46:15 -0300 Subject: [PATCH 1/5] Add product custom fields documentation --- .../wp-api-v3/_product-custom-fields.md | 61 +++++++++++++++++++ source/index.html.md | 1 + 2 files changed, 62 insertions(+) create mode 100644 source/includes/wp-api-v3/_product-custom-fields.md diff --git a/source/includes/wp-api-v3/_product-custom-fields.md b/source/includes/wp-api-v3/_product-custom-fields.md new file mode 100644 index 0000000..15fcc7d --- /dev/null +++ b/source/includes/wp-api-v3/_product-custom-fields.md @@ -0,0 +1,61 @@ +# Product custom fields # + +The product custom fields API allows you to view the custom fields that have been recorded. + +## Product custom fields properties ## + +| Attribute | Type | Description | +| --------- | ------ | ----------------------------------------------------------------------------------------------------------- | +| `key` | string | The custom field key. | +| `value` | string | The value set for the key. | + +## Retrieve product custom fields ## + +This API lets you retrieve filtered custom fields. + +
+
+ GET +
/wp-json//wc/v3/products/custom-fields/names
+
+
+ +```shell +curl https://example.com/wp-json/wc/v3/products/custom-fields/names \ + -u consumer_key:consumer_secret +``` + +```javascript +WooCommerce.get("products/custom-fields/names") + .then((response) => { + console.log(response.data); + }) + .catch((error) => { + console.log(error.response.data); + }); +``` + +```php +get('products/custom-fields/names')); ?> +``` + +```python +print(wcapi.get("products/custom-fields/names").json()) +``` + +```ruby +woocommerce.get("products/custom-fields/names").parsed_response +``` + +> JSON response example: + +```json +{ + [ + "Custom field 1", + "Custom field 2", + "Custom field 3", + "Custom field 4" + ] +} +``` diff --git a/source/index.html.md b/source/index.html.md index 7f4914a..c98e0ea 100644 --- a/source/index.html.md +++ b/source/index.html.md @@ -31,6 +31,7 @@ includes: - wp-api-v3/product-attributes - wp-api-v3/product-attribute-terms - wp-api-v3/product-categories + - wp-api-v3/product-custom-fields - wp-api-v3/product-shipping-classes - wp-api-v3/product-tags - wp-api-v3/product-reviews From 5ee4c3a32eab49b00486a35ce1c2568d8cc4fc09 Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Thu, 4 Jul 2024 15:58:41 -0300 Subject: [PATCH 2/5] Fix doc --- source/includes/wp-api-v3/_product-custom-fields.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/includes/wp-api-v3/_product-custom-fields.md b/source/includes/wp-api-v3/_product-custom-fields.md index 15fcc7d..debc3f2 100644 --- a/source/includes/wp-api-v3/_product-custom-fields.md +++ b/source/includes/wp-api-v3/_product-custom-fields.md @@ -1,6 +1,6 @@ # Product custom fields # -The product custom fields API allows you to view the custom fields that have been recorded. +The product custom fields API allows you to view the custom field names that have been recorded. ## Product custom fields properties ## @@ -9,9 +9,9 @@ The product custom fields API allows you to view the custom fields that have bee | `key` | string | The custom field key. | | `value` | string | The value set for the key. | -## Retrieve product custom fields ## +## Retrieve product custom field names ## -This API lets you retrieve filtered custom fields. +This API lets you retrieve filtered custom field names.
From 4ad78140e1b97e12199a20f0bcbfb992cd2147dc Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Wed, 10 Jul 2024 12:24:15 -0300 Subject: [PATCH 3/5] Fix available parameters --- .../wp-api-v3/_product-custom-fields.md | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/source/includes/wp-api-v3/_product-custom-fields.md b/source/includes/wp-api-v3/_product-custom-fields.md index debc3f2..f7fd321 100644 --- a/source/includes/wp-api-v3/_product-custom-fields.md +++ b/source/includes/wp-api-v3/_product-custom-fields.md @@ -2,12 +2,17 @@ The product custom fields API allows you to view the custom field names that have been recorded. -## Product custom fields properties ## +## Available parameters ## -| Attribute | Type | Description | -| --------- | ------ | ----------------------------------------------------------------------------------------------------------- | -| `key` | string | The custom field key. | -| `value` | string | The value set for the key. | +| Parameter | Type | Description | +| --------- | -------- | ---------------------------------------------------------------------------------------------------------------------------- | +| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. | +| `page` | integer | Current page of the collection. Default is `1`. | +| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. | +| `search` | string | Limit results to those matching a string. | +| `exclude` | array | Ensure result set excludes specific IDs. | +| `include` | array | Limit result set to specific ids. | +| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. | ## Retrieve product custom field names ## @@ -16,7 +21,7 @@ This API lets you retrieve filtered custom field names.
GET -
/wp-json//wc/v3/products/custom-fields/names
+
/wp-json/wc/v3/products/custom-fields/names
From 1eb7dd3e31014dd0d25cc9a1df7af09b2d9e9956 Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Wed, 10 Jul 2024 12:36:04 -0300 Subject: [PATCH 4/5] Fix table --- source/includes/wp-api-v3/_product-custom-fields.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/includes/wp-api-v3/_product-custom-fields.md b/source/includes/wp-api-v3/_product-custom-fields.md index f7fd321..63d70fe 100644 --- a/source/includes/wp-api-v3/_product-custom-fields.md +++ b/source/includes/wp-api-v3/_product-custom-fields.md @@ -2,10 +2,10 @@ The product custom fields API allows you to view the custom field names that have been recorded. -## Available parameters ## +## Custom fields available parameters ## -| Parameter | Type | Description | -| --------- | -------- | ---------------------------------------------------------------------------------------------------------------------------- | +| Parameter | Type | Description | +| ---------- | -------- | ---------------------------------------------------------------------------------------------------------------------------- | | `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. | | `page` | integer | Current page of the collection. Default is `1`. | | `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. | From 4936b6dd61a16f3ef56c4cbdd782d64ad060d3a8 Mon Sep 17 00:00:00 2001 From: Fernando Marichal Date: Thu, 11 Jul 2024 13:30:28 -0300 Subject: [PATCH 5/5] Update params --- source/includes/wp-api-v3/_product-custom-fields.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/source/includes/wp-api-v3/_product-custom-fields.md b/source/includes/wp-api-v3/_product-custom-fields.md index 63d70fe..927e7eb 100644 --- a/source/includes/wp-api-v3/_product-custom-fields.md +++ b/source/includes/wp-api-v3/_product-custom-fields.md @@ -6,13 +6,11 @@ The product custom fields API allows you to view the custom field names that hav | Parameter | Type | Description | | ---------- | -------- | ---------------------------------------------------------------------------------------------------------------------------- | -| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. | -| `page` | integer | Current page of the collection. Default is `1`. | -| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. | -| `search` | string | Limit results to those matching a string. | -| `exclude` | array | Ensure result set excludes specific IDs. | -| `include` | array | Limit result set to specific ids. | -| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. | +| `context` | string | Scope under which the request is made; determines fields present in response. Options: `view` and `edit`. Default is `view`. | +| `page` | integer | Current page of the collection. Default is `1`. | +| `per_page` | integer | Maximum number of items to be returned in result set. Default is `10`. | +| `search` | string | Limit results to those matching a string. | +| `order` | string | Order sort attribute ascending or descending. Options: `asc` and `desc`. Default is `desc`. | ## Retrieve product custom field names ##