DELETE
/
api
/
v1
/
tiers
Delete Tier
curl --request DELETE \
  --url https://app.journeybee.io/api/v1/tiers \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123
}'

Authentication

curl -X DELETE "https://app.journeybee.io/api/v1/tiers" \
  -H "Authorization: Bearer your-api-key-uuid" \
  -H "Content-Type: application/json" \
  -d '{"id": 1}'

Request Body Schema

id
number
required
Tier ID to delete

Response Schema

The API returns a 204 No Content status code on successful deletion.

Notes

  • Requires API key with write_access permission