Skip to content

Remove org custom attributes

DELETE
/api/v1/extraction/attributes/{domain}
curl --request DELETE \
--url 'https://dashboard.justcrawl.io/api/v1/extraction/attributes/example?pageType=product' \
--header 'Authorization: Bearer <token>'

Drops this org’s custom attribute set for the (domain, pageType) pair. Subsequent extractions revert to the platform-discovered schema for that page type. Idempotent — calling on a domain without overrides still returns { ok: true }. Requires workflows:write.

domain
required
string
pageType
string
default: product

Custom attribute set removed (or already absent).

Media type application/json
object
ok
boolean
Example generated
{
"ok": true
}

Missing or invalid authentication token

Media type application/json
object
error
string
Example
{
"error": "Missing or invalid authentication token"
}

Insufficient permissions for this operation

Media type application/json
object
error
string
Example
{
"error": "No organization. Complete onboarding first."
}

Unexpected server error. Logs and PostHog $exception capture

Media type application/json
object
error
string
Example
{
"error": "Something went wrong"
}