Skip to content

Commit 8ad948a

Browse files
committed
attribute terms
1 parent b9905b8 commit 8ad948a

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

source/includes/wp-api-v1/_product-attribute-terms.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# Product - Attribute Terms #
1+
# Product Attribute Terms #
22

33
This section lists all API endpoints that can be used to create, edit or otherwise manipulate product attribute terms.
44

5-
## Product Attribute Properties ##
5+
## Attribute term properties ##
66

77
| Attribute | Type | Description |
88
|--------------|---------|------------------------------------------------------------------------------------------|
@@ -12,11 +12,11 @@ This section lists all API endpoints that can be used to create, edit or otherwi
1212
| `menu_order` | integer | Menu order, used to custom sort the resource. |
1313
| `count` | integer | Number of published products for the resource. <i class="label label-info">read-only</i> |
1414

15-
## Create a Product Attribute Term ##
15+
## Create an attribute term ##
1616

1717
This API helps you to create a new product attribute term.
1818

19-
### HTTP Request ###
19+
### HTTP request ###
2020

2121
<div class="api-endpoint">
2222
<div class="endpoint-data">
@@ -94,7 +94,7 @@ woocommerce.post("products/attributes/2/terms", data).parsed_response
9494
}
9595
```
9696

97-
## View a Product Attribute Term ##
97+
## Retrieve an attribute term ##
9898

9999
This API lets you retrieve a product attribute term by ID.
100100

@@ -152,7 +152,7 @@ woocommerce.get("products/attributes/2/terms/23").parsed_response
152152
}
153153
```
154154

155-
## View List of Product Attribute Terms ##
155+
## List all attribute terms ##
156156

157157
This API lets you retrieve all terms from a product attribute.
158158

@@ -326,7 +326,7 @@ woocommerce.get("products/attributes/2/terms").parsed_response
326326
]
327327
```
328328

329-
#### Available Parameters ####
329+
#### Available parameters ####
330330

331331
| Parameter | Type | Description |
332332
|--------------|---------|--------------------------------------------------------------------------------------------------------------------------------------------|
@@ -343,11 +343,11 @@ woocommerce.get("products/attributes/2/terms").parsed_response
343343
| `product` | integer | Limit result set to resources assigned to a specific product. |
344344
| `slug` | string | Limit result set to resources with a specific slug. |
345345

346-
## Update a Product Attribute Term ##
346+
## Update an attribute term ##
347347

348348
This API lets you make changes to a product attribute term.
349349

350-
### HTTP Request ###
350+
### HTTP request ###
351351

352352
<div class="api-endpoint">
353353
<div class="endpoint-data">
@@ -425,11 +425,11 @@ woocommerce.put("products/attributes/2/terms/23", data).parsed_response
425425
}
426426
```
427427

428-
## Delete a Product Attribute Term ##
428+
## Delete an attribute term ##
429429

430430
This API helps you delete a product attribute term.
431431

432-
### HTTP Request ###
432+
### HTTP request ###
433433

434434
<div class="api-endpoint">
435435
<div class="endpoint-data">
@@ -485,17 +485,17 @@ woocommerce.delete("products/attributes/2/terms/23", force: true).parsed_respons
485485
}
486486
```
487487

488-
#### Available Parameters ####
488+
#### Available parameters ####
489489

490490
| Parameter | Type | Description |
491491
|-----------|--------|---------------------------------------------------------------|
492492
| `force` | string | Required to be `true`, as resource does not support trashing. |
493493

494-
## Create/Update/Delete Multiple Product Attribute Terms ##
494+
## Batch update attribute terms ##
495495

496496
This API helps you to batch create, update and delete multiple product attribute terms.
497497

498-
### HTTP Request ###
498+
### HTTP request ###
499499

500500
<div class="api-endpoint">
501501
<div class="endpoint-data">

0 commit comments

Comments
 (0)