Easyteam Retail
  1. Checklists
Easyteam Retail
  • Home
  • Staff Management
    • List all staff
      GET
    • Add a new staff member
      POST
    • Retrieve staff details
      GET
    • Update staff details
      PUT
    • Delete a staff member
      DELETE
  • Time Tracking
    • Clock-in for a shift
      POST
    • Clock-out from a shift
      POST
    • Start a break
      POST
    • End a break
      POST
  • Timesheets
    • Retrieve timesheets
      GET
    • Retrieve a staff member's timesheet
      GET
    • Adjust a timesheet
      PUT
    • Retrieve late staff
      GET
  • Schedules
    • Retrieve schedules
      GET
    • Create a new schedule
      POST
    • Retrieve schedule details
      GET
    • Update schedule details
      PUT
    • Delete a schedule
      DELETE
    • Export schedule data
      GET
    • Retrieve AI store traffic
      GET
  • Commissions
    • List all commission plans
    • Add a new commission plan
    • Update a commission plan
    • Delete a commission plan
    • Retrieve commission reports
    • Change order attribution
    • AI insights for sales increases
  • Sales Performance
    • Retrieve sales performance by location
    • Set sales goals
    • Check location goal status
    • AI-based sales goal prediction
    • Retrieve top-performing staff
  • Payroll Management
    • Retrieve payroll by location
    • Process payroll for a timeframe
    • Retrieve payroll history
    • Retrieve pay slips
    • Retrieve tax details
    • Onboard staff to payroll
    • Terminate staff payroll
  • Checklists
    • Retrieve all checklists
      GET
    • Create a new checklist
      POST
    • Update a checklist
      PUT
    • Delete a checklist
      DELETE
    • Check a task inside a checklist
      POST
    • Webhook for pending checklists
      POST
  1. Checklists

Update a checklist

PUT
/checklists/{checklist_id}
Checklists
Update details of an existing checklist.

Request

Path Params
checklist_id
string 
required
The ID of the checklist to update.
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
Checklist updated successfully
Body
object {0}
Example
{}
🟠404Record Not Found
🔴500Server Error
Previous
Create a new checklist
Next
Delete a checklist