Bunjang Open API
  1. Order
Bunjang Open API
  • Overview
  • Changelog
  • Authentication
  • Product Catalog
    • Service Base URL
    • Sample Data
    • Full Catalog Download
      GET
    • Segment Catalog Download
      GET
  • Rest API
    • Service Base URL
    • Error Codes
    • Product Category
      • Categories Lookup
    • Brand
      • Brands Lookup
    • Product
      • Product Lookup
      • Products Retrieval
    • Point
      • Point Balance Lookup
    • Order
      • Create Order
        POST
      • Confirm Order
        POST
      • Order Lookup
        GET
      • Orders Lookup
        GET
      • Create Order V2
        POST
  1. Order

Create Order V2

POST
https://openapi.bunjang.co.kr/api/v2/orders
order

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json
product
objectΒ 
required
id
integerΒ 
required
Example:
12345
price
integerΒ 
required
Example:
500000
deliveryPrice
integerΒ 
required
Example:
3000
Example
{
    "product": {
        "id": 12345,
        "price": 500000
    },
    "deliveryPrice": 3000
}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://openapi.bunjang.co.kr/api/v2/orders' \
--header 'Content-Type: application/json' \
--data-raw '{
    "product": {
        "id": 12345,
        "price": 500000
    },
    "deliveryPrice": 3000
}'

Responses

🟒200Success
application/json
Body
data
objectΒ 
required
id
integerΒ 
required
Order ID
Example:
1
Example
{
    "data": {
        "id": 1
    }
}
🟠401INVALID_AUTH_TOKEN
🟠400BAD_REQUEST
Modified atΒ 2025-03-19 05:16:02
Previous
Orders Lookup
Built with