Clay API Docs
  1. Tables
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. Tables

Delete a row from the table

Developing
DELETE
https://api.clay.com/v3/tables/{TABLE_ID}/records
Deletes one or more rows from the specified table. This endpoint removes records permanently based on the provided record IDs.
Input: Provide an array of record IDs to delete. Record IDs can be fetched using the "Get Record IDs from View" endpoint.
Note: This action is permanent and cannot be undone. Ensure you have the correct record IDs before deletion.

Request

Path Params

Header Params

Body Params application/jsonRequired

Examples

Responses

🟠404Not Found
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request DELETE 'https://api.clay.com/v3/tables//records' \
--header 'Cookie: {YOUR_CLAY_COOKIES}' \
--header 'Content-Type: application/json' \
--data-raw '{"recordIds":["r_example123"]}'
Response Response Example
{
    "type": "string",
    "message": "string",
    "details": null
}
Modified at 2026-01-14 06:51:29
Previous
Add a row in the table
Next
Delete all rows from a table
Built with