OpenSend docs
Delete Segment
Delete a segment. This page documents the OpenSend-owned API contract for DELETE /segments/{id}.
DELETE /segments/{id}
Authentication
Use an OpenSend API key in the Authorization header. Dashboard session cookies are not API credentials for public API clients.
Authorization: Bearer os_YOUR_API_KEYWhen to use it
Segment routes manage audience groupings. Segment membership is tenant-scoped and can be used by broadcasts, automations, and dashboard audience filters. Delete or detach the target record for the authenticated tenant. Treat deletes as irreversible unless the resource-specific docs state otherwise.
Parameters
Path parameters identify the tenant-scoped resource. JSON body fields are validated by the route before any database write.
Request example
{
"name": "Product qualified leads"
}Response
Successful responses return JSON scoped to the authenticated tenant. A representative response shape is:
{
"id": "segment_123",
"name": "Product qualified leads"
}Errors
OpenSend returns structured errors for missing authentication, validation failures, not-found resources, quota/rate-limit conditions, and unexpected server failures. Treat 404 as either missing or not owned by the caller.
Self-hosting notes
Self-hosted deployments can use the same path on their own OPENSEND_BASE_URL. Run migrations before deploying code that expects new fields, and keep API keys in a secrets manager instead of committing them to source control.