الحجوزاتإطلاق عرض السعر (إجراء FIXED — النشاط التجاري)

إطلاق عرض السعر (إجراء FIXED — النشاط التجاري)

يرسل عرض السعر: يضبط عمودَي quoted_at + duration، ويقدّم pending_action إلى confirm_booking. تبقى الحالة `booking`.

المعاملات

idstringpathمطلوب
معرّف طلب العمل
crewarray<object>bodyاختياري
Crew — خطة متعددة الأشخاص (قائد فنّي + مرافقون). الإغفال / الفراغ = شخص واحد (قائد 100%). عند وجودها يجب أن تتضمّن is_lead واحدًا بالضبط وأن يبلغ مجموع wrench_percent قيمة 100. راجع MULTIPERSON_CREW_DESIGN.md.
is_leadbooleanbodyاختياري
Whether this slot is the crew lead. Exactly one slot must set it.
skill_idsarray<string>bodyاختياري
UUIDs of the skills this slot requires (hard filter for the matching engine). Optional; up to 20.
wrench_percentintegerbodyاختياري
This slot's share of the job's man-hours, in percent (1–100). Shares across all slots must sum to 100.
demobilization_minutesintegerbodyاختياري
Demobilization (teardown) minutes added after the work. Optional, min 0.
job_duration_minutesintegerbodyمطلوب
Hands-on work duration in minutes (man-minutes for a crew job). Required, min 1.
mobilization_minutesintegerbodyاختياري
Mobilization (setup/travel-prep) minutes added before the work. Optional, min 0.
status_versionintegerbodyاختياري
Optimistic-lock fence: the status_version from your last read. Omitted/0 = fence on the row's current version (no race protection).
POST/v1/job-requests/{id}/quote
curl -X POST "https://api.crisphive.com/v1/job-requests/9b2f6c3e-1a4d-4f0a-8f2e-7c5d1b3a9e01/quote" \
  -H "Authorization: Bearer chsk_test_4eC8xQ9mZ2pL7Ka0rT" \
  -H "Content-Type: application/json" \
  -d '{
  "crew": [
    {
      "is_lead": true,
      "skill_ids": [
        "9b2f6c3e-1a4d-4f0a-8f2e-7c5d1b3a9e01"
      ],
      "wrench_percent": 50
    }
  ],
  "demobilization_minutes": 15,
  "job_duration_minutes": 120,
  "mobilization_minutes": 15,
  "status_version": 1
}'
نص الطلب
{
"crew": [
{
"is_lead": ,
"skill_ids": [
],
"wrench_percent":
}
],
"demobilization_minutes": ,
"job_duration_minutes": ,
"mobilization_minutes": ,
"status_version":
}

الاستجابات