DELETE
/
api
/
v1
/
collection-records
/
activity-list
/
{activityId}
curl --request DELETE \
  --url https://api.zixflow.com/api/v1/collection-records/activity-list/{activityId} \
  --header 'Authorization: Bearer <token>'
{
    "status": true,
    "message": "Record Deleted Successfully!"
}

Description

This API endpoint facilitates the removal of a specific activity by providing its unique identifier.

Path

activityId
string
required

A unique identifier for the activity to be deleted.

Response

status
boolean

Indicates the success or failure of the activity deletion. In this case, true signifies a successful operation.

message
string

Provides a human-readable message accompanying the response. In this instance, it confirms the successful deletion of the activity with the message “Record deleted successfully.”