Skip to main content
DELETE
/
services
/
core
/
open_api
/
v1
/
staff_tasks
/
{id}
cURL
curl --request DELETE \
  --url https://partner-api.getoliver.com/services/core/open_api/v1/staff_tasks/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Client-Id: <x-client-id>'
{
  "success": true,
  "data": {},
  "message": "<string>"
}
Deleting a staff task performs a soft delete by setting the task status to canceled and recording the finalized_at timestamp. The task record is not permanently removed.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Client-Id
string
required

The location id of the practice

Path Parameters

id
string
required

The ID of the staff task to delete

Response

Staff task canceled

success
boolean
required
data
object
message
string | null