Clay API Docs
  1. Workbooks
Clay API Docs
  • Disclaimer
  • Authentication
    • Fetch Clay Cookies
      POST
  • Workspaces
    • Get All Workspaces in your account
      GET
  • Folders
    • Create a folder
      POST
    • Delete a folder
      DELETE
  • Resources
    • Fetch all resources
      POST
    • Search a resource in workspace
      POST
  • Workbooks
    • Create a Workbook
      POST
    • Delete a Workbook
      DELETE
  • Tables
    • Fetch all record ids in a table
      GET
    • Add a row in the table
      POST
    • Delete a row from the table
      DELETE
    • Delete all rows from a table
      DELETE
    • Run an enrichment column
      PATCH
    • Count number of row in a Table
      GET
  • Credit Usage
    • Get a list of owners
      GET
    • Get User-Specific Credit Usage Report
      GET
    • Get User-Created Resources
      POST
    • Get Workspace Credit Usage Report
      GET
    • List all integrations
      GET
    • Get Integration Type Details
      GET
    • Get Integration-Specific Credit Usage
      GET
    • Get Integration Credit Usage Report
      GET
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Workbooks

Delete a Workbook

Developing
DELETE
https://api.clay.com/v3/workspaces/{YOUR_CLAY_WORKSPACE_ID}/resources/
Deletes a specific workbook from your Clay workspace. This endpoint moves the workbook to trash (soft delete) by default, allowing for potential recovery, or can permanently delete it based on the isPermanentDelete parameter.

Request

Path Params

Header Params

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.clay.com/v3/workspaces/<YOUR_CLAY_WORKSPACE_ID>/resources/' \
--header 'Cookie: YOUR_CLAY_COOKIES' \
--header 'content-type: application/json' \
--data-raw '{"tableIds":[],"workbookIds":["wb_0j05sfsdfxHo6CaTA"],"folderIds":[],"isPermanentDelete":false}'
Response Response Example
{}
Modified at 2026-01-14 06:50:26
Previous
Create a Workbook
Next
Fetch all record ids in a table
Built with