Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit adf3058

Browse files
committed
readme update
1 parent 75bfd48 commit adf3058

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

readme.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,41 @@ else
4242
Order order = client.UpdateOrderAsync("[order token/guid]", new OrderPutOptions() { trackingUrl = "http://test.com" }).Result;
4343
```
4444

45+
## Implemented endpoints
46+
47+
```
48+
* GET /orders
49+
* GET /orders/{token}
50+
* PUT /orders/{token}
51+
* GET /subscriptions
52+
* GET /subscriptions/{id}
53+
* GET /subscriptions/{id}/invoices
54+
* DELETE /subscriptions/{id}
55+
* POST /subscriptions/{id}/pause
56+
* POST /subscriptions/{id}/resume
57+
* GET /orders/{token}/notifications
58+
* POST /orders/{token}/notifications
59+
* GET /orders/{token}/refunds
60+
* GET /orders/{token}/refunds/{id}
61+
* POST /orders/{token}/refunds
62+
* GET /customers
63+
* GET /customers/{id}
64+
* GET /customers/{id}/orders
65+
* GET /discounts
66+
* GET /discounts/{id}
67+
* POST /discounts
68+
* PUT /discounts/{id}
69+
* DELETE /discounts/{id}
70+
* GET /usersessions/{token}
71+
* GET /products
72+
* GET /products/{id}
73+
* POST /products
74+
* PUT /products/{id}
75+
* DELETE /products/{id}
76+
* GET /carts/abandoned
77+
* GET /carts/abandoned/{token}
78+
```
79+
4580
## Contribution Guidelines
4681

4782
Contributions are more than welcome. If you'd like to submit a pull request, it's best to start with an issue to describe what you'd like to build.

0 commit comments

Comments
 (0)