주문내역

Title
Method
URL

주문 내역

GET

/api/order/history

주문 취소

POST

/api/order/refunds

주문 상세

GET

/api/order/details

Create a new user

POST /users

<Description of the endpoint>

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <token>

Body

Name
Type
Description

name

string

Name of the user

age

number

Age of the user

Response

{
  "id": 1,
  "name": "John",
  "age": 30
}

Last updated