Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2d4f1f7

Browse files
committed
docs: add order show endpoint
1 parent 14c0dcf commit 2d4f1f7

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -256,15 +256,23 @@ Magento::api('guestCarts')->couponCode($cartId, $couponCode);
256256
<a id="orders"></a>
257257
### Orders (salesOrderRepositoryV1)
258258

259-
Lists orders that match specified search criteria.
259+
Lists orders that match specified search criteria.
260260

261261
`/V1/orders`
262-
263-
Lists orders that match specified search criteria.
264262
```php
265263
Magento::api('orders')->all($pageSize = 50, $currentPage = 1, $filters = []);
266264
```
267265

266+
`/V1/orders/{id}`
267+
268+
List a specified order:
269+
```php
270+
Magento::api('orders')->show($orderId);
271+
```
272+
273+
274+
275+
268276
<a id="product-attributes"></a>
269277
### Product Attributes (catalogProductAttributeRepositoryV1)
270278

0 commit comments

Comments
 (0)