1. ORDER
Pai Shop
  • AUTH
    • register
      POST
    • login
      POST
    • profile info after login
      GET
    • logout
      POST
    • forgot password
      POST
    • reset password
      POST
  • PRODUCT
    • all product
      GET
    • product by slug
      GET
    • add product (admin)
      POST
    • add product image by id (admin)
      POST
    • update product by id (admin)
      PATCH
    • soft delete product by id (admin)
      DELETE
    • hard delete product by id (admin)
      DELETE
    • all trash (admin)
      GET
    • trash by id (admin)
      GET
    • restore trash (admin)
      PATCH
    • Sort by Price: Low to High
      GET
    • Sort by Name: A-Z
      GET
    • Find products within the price range of Rp 500,000 to Rp 1,500,000
      GET
    • Lowest price in a specific category and range
      GET
  • ORDER
    • stats order (admin)
      GET
    • all orders (admin)
      GET
    • orders history
      GET
    • orders history by orderNumber
      GET
    • add order
      POST
    • web hook (admin)
      POST
    • cancel order by id
      PATCH
    • update order status (admin)
      PATCH
    • soft delete orders (admin)
      DELETE
    • hard delete orders (admin)
      DELETE
    • all trash (admin)
      GET
    • trash by id (admin)
      GET
    • restore trash (admin)
      PATCH
    • Order History by status
      GET
    • orders by id (admin)
      GET
  • PROFILE
    • user profile
    • add address
    • update profile
    • update default address by id
    • hard delete address
  • USER
    • all users (admin)
    • detail user by id (admin)
    • edit user role by id (admin)
    • soft delete users (admin)
    • hard delete users (admin)
    • all trash (admin)
    • trash by id (admin)
    • restore trash (admin)
  • CATEGORY
    • all categories
    • categories by id
    • add categories (admin)
    • update categories by id (admin)
    • soft delete categories by id (admin)
    • hard delete categories by id (admin)
    • all trash categories (admin)
    • trash categories by id (admin)
    • restore trash categories by id (admin)
  • FAVORITE
    • all fav product
    • add/unadd fav product
  • HERO
    • hero banner stats
  • FAQ
    • all faqs for public
    • all faqs (admin)
    • faq by id
    • add faqs (admin)
    • edit faq by id
    • hard delete faq by id
  • COMPANY-CONTACT
    • company-contact info
    • edit company-contact
  1. ORDER

add order

Developing
POST
/orders

Request

Body Params application/jsonRequired

Examples

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/orders' \
--header 'Content-Type: application/json' \
--data '{
  "items": [
    {
      "productId": "0e47a74b-4918-4e76-9816-a8251f330d9a",
      "quantity": 2
    }
  ],
  "shippingAddressId": "915edeef-88dd-4aa5-a690-21b9bde4a97e",
  "note": "Tolong bungkus bubble wrap yang tebal ya, terima kasih!"
}'
Response Response Example
{
    "message": "Order successfully created",
    "data": {
        "id": "11f8c910-a96b-41f2-956b-6f81ac65ed0f",
        "orderNumber": "#1001-20260309-D4CC-006",
        "totalAmount": "240000.00",
        "status": "PENDING",
        "user": {
            "id": "533290d0-5ad9-42c1-aaf2-22ecbaabed70"
        },
        "items": [
            {
                "id": "c3496753-587f-4fa0-ab3d-2ea8805f49a0",
                "quantity": 2,
                "price": "120000.00",
                "product": {
                    "id": "0e47a74b-4918-4e76-9816-a8251f330d9a",
                    "name": "The Daily Productivity Planner",
                    "description": "A 6-month undated planner designed to help you organize tasks, track habits, and achieve your goals. Hardcover with premium 100gsm paper.",
                    "price": "120000.00",
                    "stock": 140,
                    "imageUrl": "https://res.cloudinary.com/dloemkmnu/image/upload/v1772203633/pai_shop_ecommerce_products/aoc3wlybtvupb1loyvsx.jpg",
                    "createdAt": "2026-02-27T14:47:11.696Z",
                    "updatedAt": "2026-03-09T10:01:50.594Z",
                    "deletedAt": null,
                    "slug": "the-daily-productivity-planner-xotk"
                },
                "productSnapshot": {
                    "id": "0e47a74b-4918-4e76-9816-a8251f330d9a",
                    "name": "The Daily Productivity Planner",
                    "price": 120000,
                    "imageUrl": "https://res.cloudinary.com/dloemkmnu/image/upload/v1772203633/pai_shop_ecommerce_products/aoc3wlybtvupb1loyvsx.jpg",
                    "description": "A 6-month undated planner designed to help you organize tasks, track habits, and achieve your goals. Hardcover with premium 100gsm paper."
                },
                "createdAt": "2026-03-09T10:01:50.594Z",
                "updatedAt": "2026-03-09T10:01:50.594Z"
            }
        ],
        "note": "Tolong bungkus bubble wrap yang tebal ya, terima kasih!",
        "shippingAddressSnapshot": {
            "recipient_name": "Elga (Rumah)",
            "phone": "081234567890",
            "full_address": "Jl. Mawar No. 15, RT 01 RW 02",
            "city": "Jakarta",
            "postal_code": "76543"
        },
        "snapToken": "9cde426f-cf0c-463d-bcd4-1df93a46ab41",
        "snapRedirectUrl": "https://app.sandbox.midtrans.com/snap/v4/redirection/9cde426f-cf0c-463d-bcd4-1df93a46ab41",
        "createdAt": "2026-03-09T10:01:50.594Z",
        "updatedAt": "2026-03-09T10:01:50.594Z",
        "deletedAt": null
    },
    "payment": {
        "token": "9cde426f-cf0c-463d-bcd4-1df93a46ab41",
        "redirectUrl": "https://app.sandbox.midtrans.com/snap/v4/redirection/9cde426f-cf0c-463d-bcd4-1df93a46ab41"
    }
}
Modified at 2026-03-09 10:01:57
Previous
orders history by orderNumber
Next
web hook (admin)
Built with