Skip to content

Commit d444798

Browse files
committed
improve syntax
1 parent 5fa8113 commit d444798

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/api/admin/guides/order-management.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Order Refund Calculate APIs are only available on `2024-04-01` version and newer
4040
Below is an abreviated example request to [ordersRetrieve](/docs/api/admin/reference/?v=2024-04-01#/operations/ordersRetrieve) endpoint to get the line items of the order.
4141

4242
```json title="Retrieve Order Details"
43-
//GET https://{store}.29next.store/api/admin/orders/{number}/
43+
// GET https://{store}.29next.store/api/admin/orders/{number}/
4444
{
4545
"lines": [
4646
{

docs/apps/guides/dispute-service.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ sequenceDiagram
3636
Dispute Service->>Store: Matches dispute to store transaction
3737
Store-->>Customer: Customer is added to block lists
3838
Dispute Service-->>Store: Create refund (optional)
39-
Dispute Service-->>Store: Cancel fulfillment (optional)
39+
Dispute Service-->>Store: Cancel fulfillment (recommended)
4040
Dispute Service->>Store: Resolve dispute
4141
```
4242

@@ -120,7 +120,7 @@ To create a dispute in the store using the [disputesCreate](/docs/api/admin/refe
120120
To match a dispute to a transaction, pass the `transaction` id to the [disputesUpdate](/docs/api/admin/reference/#/operations/disputesUpdate) API. Matching the dispute to the transaction will match the associated order and customer.
121121

122122
```json title="Match dispute"
123-
PUT https://{store}.29next.store/api/admin/disputes/{id}/
123+
// PUT https://{store}.29next.store/api/admin/disputes/{id}/
124124
{
125125
"transaction": 7388
126126
}
@@ -152,7 +152,7 @@ If order `fulfilmlent_status` is `unfulfilled`, your dispute service can stop fu
152152

153153

154154
```json title="Hold Fulfillment"
155-
//POST https://{store}.29next.store/api/admin/fulfillment-orders/{id}/hold/
155+
// POST https://{store}.29next.store/api/admin/fulfillment-orders/{id}/hold/
156156

157157
{
158158
"reason": "other",

0 commit comments

Comments
 (0)