cURL
curl --request DELETE \ --url https://app.journeybee.io/api/v1/tags \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "id": 123 }'
Delete a tag and remove all associations
curl -X DELETE "https://app.journeybee.io/api/v1/tags" \ -H "Authorization: Bearer your-api-key-uuid" \ -H "Content-Type: application/json" \ -d '{"id": 10}'
204 No Content
write_access