Update project checklist
Developing
PUT
/project/{projectId}/checklist/{projectChecklistId}
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT '/project//checklist/' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Checklist for Slab Quality",
"description": "Inspection checklist after pouring concrete",
"comment": "Minor cracks detected",
"documentUrl": "https://storage.example.com/checklists/slab-quality.pdf",
"startDate": "2025-06-01T09:00:00.000Z",
"endDate": "2025-06-03T17:00:00.000Z",
"completedAt": "2025-06-03T18:00:00.000Z",
"status": "Completed",
"checkListContent": "{\"checkpoints\":[{\"title\":\"Crack check\",\"passed\":true}]}",
"completedById": "user_abc123",
"annotationId": "annot_xyz789",
"projectId": "proj_123xyz",
"type": "inspection"
}'
Response Response Example
{}
Request
Path Params
projectId
stringÂ
required
projectChecklistId
stringÂ
required
Body Params application/json
Responses
Modified at 2025-06-06 16:19:38