Skip to content

Workspace API

Delete a Subscription

Remove a signal subscription by its row id with DELETE /workspace/signal-subscriptions/{id}.

Endpoint
DELETE https://api.parcelengineering.com/api/v1/workspace/signal-subscriptions/{id}

Removes a signal subscription by its row id. Signals of the deleted type leave the workspace queue immediately and no further alerts are sent. Re-subscribing later starts a fresh queue watermark.

This operation is idempotent. Deleting a subscription that does not exist returns a success response with no error.

Delete costs 0 credits.

Path parameters

ParameterDescription
idUUID of the subscription row to delete. Returned as id in the List Subscriptions response.

Query parameters

ParameterTypeRequiredDescription
workspace_idstring (UUID)NoOverride the workspace resolved from your API key.

Example

Delete a signal subscription
curl -X DELETE \
"https://api.parcelengineering.com/api/v1/workspace/signal-subscriptions/7c3f1a2b-0001-4e8d-bf6a-000000000001" \
-H "Authorization: Bearer pcl_your_api_key"

Response

Response
{
"data": { "deleted": true },
"metadata": { "credits": 0 }
}

Delete costs 0 credits.