Skip to main content
DELETE
/
api
/
v1
/
signals
/
types
/
{id}
Delete a custom signal type
curl --request DELETE \
  --url https://app.puffle.ai/api/v1/signals/types/{id} \
  --header 'Authorization: Bearer <token>'
{}

Overview

Delete a user-created signal type. Built-in types (hiring, funding, management_change, competitor_mentions) cannot be deleted — attempting to delete them returns 400. Deleting cascades to signal_type_sources, but does NOT delete historical signal_results. Irreversible.
This operation shares the URL path /api/v1/signals/types/{id} with other verbs. See the sibling page for related operations on the same resource.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Signal type UUID.

Pattern: ^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$

Response

Signal type deleted. No response body.

204 — no body on success.