Delete Contact Property
1import { Reloop } from "reloop-email";2
3const reloop = new Reloop({ apiKey: "rl_123456789" });4
5const { property, propertyError } = await reloop.contacts.properties.delete(6 "prop_123456789",7);8
9if (propertyError) throw propertyError;10
11console.log(property.id, property.success);1{2 "object": "contact_property",3 "success": true,4 "id": "con_123456789",5 "name": "Newsletter",6 "event": "evt_123456789"7}Path Parameters
contact_property_idstringRequired
Property ID to delete
Was this page helpful?
- Need help? Contact Support.
- Chat with Reloop developers on Discord.
- Check out our changelog.
- Questions? Contact Sales.
- LLM? Read llms.txt.