> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zixflow.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Delete Activity By ID

> This endpoint allows the deletion of selected activity details.

#### Description

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

#### Path

<ParamField path="activityId" type="string" required>
  A unique identifier for the activity to be deleted.
</ParamField>

#### Response

<ResponseField name="status" type="boolean">
  Indicates the success or failure of the activity deletion. In this case, true
  signifies a successful operation.
</ResponseField>

<ResponseField name="message" type="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."
</ResponseField>

<ResponseExample>
  ```json 200-Success theme={null}
  {
      "status": true,
      "message": "Record Deleted Successfully!"
  }
  ```

  ```json 401-Unauthorised theme={null}
  {
    "status": false,
    "message": "No token provided"
  }
  ```
</ResponseExample>
