Delete a Flow Subscription

Delete a specific flow subscription. Both email and flow_trigger are required to identify the subscription to delete.

DELETE https://api.notifiedby.com/v1/flows/subscriptions/

Parameters:

Parameter

Required

Description

email

Yes

The recipient’s email address.

flow_trigger

Yes

The trigger keyword of the flow.

Success Response: 204 No Content

Error Responses:

  • 400 – Missing required parameters.

  • 404 – Subscription not found.

Example with curl:

curl -X DELETE "https://api.notifiedby.com/v1/flows/subscriptions/?email=user@example.com&flow_trigger=WELCOME_SIGNUP" \
    -H "Authorization: Api-Key YOUR_API_KEY"