File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 42
42
Order order = client .UpdateOrderAsync (" [order token/guid]" , new OrderPutOptions () { trackingUrl = " http://test.com" }).Result ;
43
43
```
44
44
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
+
45
80
## Contribution Guidelines
46
81
47
82
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.
You can’t perform that action at this time.
0 commit comments