Skip to main content
DELETE
/
v1
/
boards
/
{boardId}
/
nodes
/
{id}
Delete a node
curl --request DELETE \
  --url https://api.chatgrid.ai/v1/v1/boards/{boardId}/nodes/{id} \
  --header 'Authorization: Bearer <token>'
{
  "object": "node",
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "deleted": true
  }
}

Authorizations

Authorization
string
header
required

Pass your API key (prefixed cgk_) or a Supabase JWT in the Authorization: Bearer <token> header.

Path Parameters

boardId
string<uuid>
required

Board UUID.

Example:

"a1b2c3d4-e5f6-7890-abcd-ef1234567890"

id
string<uuid>
required

Node UUID.

Example:

"e5f6a7b8-c9d0-1234-efab-345678901234"

Response

Node deleted.

object
enum<string>
Available options:
node
data
object