sayren Docs
Order items

Update memo

PUT
/v1/order-items/{orderItemId}/memo
AuthorizationBearer <token>

userToken(계정 스코프) 또는 storeToken(스토어 스코프)

In: header

Path Parameters

orderItemId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

memo*string
Lengthlength <= 500

Response Body

application/json

curl -X PUT "https://example.com/v1/order-items/string/memo" \  -H "Content-Type: application/json" \  -d '{    "memo": "string"  }'
{  "meta": {    "status": 0,    "code": "OK",    "message": "string",    "isSuccess": true  },  "data": {    "orderItemId": "string",    "sellerMemo": "string"  },  "error": null}