uodate create/detail - no upload file

This commit is contained in:
Phuoc Nguyen
2025-11-28 16:38:46 +07:00
parent 9e7bda32f2
commit 5e3e1401c1
8 changed files with 834 additions and 342 deletions

View File

@@ -70,4 +70,39 @@ curl --location 'https://land.dbiz.com//api/method/building_material.building_ma
}
]
}
}
}
#create new design request
curl --location 'https://land.dbiz.com//api/method/building_material.building_material.api.design_request.create' \
--header 'Cookie: sid=a0cbe3ea6f9a7e9cf083bbe3139eada68d2357eac0167bcc66cda17d; full_name=Ha%20Duy%20Lam; sid=a0cbe3ea6f9a7e9cf083bbe3139eada68d2357eac0167bcc66cda17d; system_user=yes; user_id=lamhd%40gmail.com; user_image=/files/avatar_0986788766_1763627962.jpg' \
--header 'X-Frappe-Csrf-Token: 6ff3be4d1f887dbebf86ba4502b05d94b30c0b0569de49b74a7171a9' \
--header 'Content-Type: application/json' \
--data '{
"subject": "Nhà phố 2 tầng",
"area": "150",
"region": "Quận 1, TP.HCM",
"desired_style": "Hiện đại",
"estimated_budget": "500 triệu",
"detailed_requirements": "Cần thiết kế phòng khách rộng, 3 phòng ngủ",
"dateline": "2025-12-31"
}'
#response
{
"message": {
"success": true,
"data": {
"name": "ISS-2025-00006"
}
}
}
#upload file
curl --location 'https://land.dbiz.com//api/method/upload_file' \
--header 'Cookie: sid=a0cbe3ea6f9a7e9cf083bbe3139eada68d2357eac0167bcc66cda17d; full_name=Ha%20Duy%20Lam; sid=a0cbe3ea6f9a7e9cf083bbe3139eada68d2357eac0167bcc66cda17d; system_user=yes; user_id=lamhd%40gmail.com; user_image=/files/avatar_0986788766_1763627962.jpg' \
--header 'X-Frappe-Csrf-Token: 6ff3be4d1f887dbebf86ba4502b05d94b30c0b0569de49b74a7171a9' \
--form 'file=@"/C:/Users/tiennld/Downloads/b0d6423a04ce8890d1df.jpg"' \
--form 'is_private="0"' \
--form 'folder="Home/Attachments"' \
--form 'doctype="Issue"' \
--form 'docname="ISS-2025-00005"' \
--form 'optimize="true"'