- Home
- Staff Management
- Time Tracking
- Timesheets
- Schedules
- Commissions
- Sales Performance
- Payroll Management
- Checklists
Update a checklist
PUT
/checklists/{checklist_id}
Checklists
Request
Path Params
checklist_id
string
required
Body Params application/json
location_id
string
required
name
string
required
tasks
array [object {1}]
required
name
string
optional
Example
{
"location_id": "string",
"name": "string",
"tasks": [
{
"name": "string"
}
]
}
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 PUT '/checklists/' \
--header 'Content-Type: application/json' \
--data-raw '{
"location_id": "string",
"name": "string",
"tasks": [
{
"name": "string"
}
]
}'
Responses
🟢200OK
application/json
Body
object {0}
Example
{}
🟠404Record Not Found
🔴500Server Error