Actions11
Overview
This node allows users to delete an event from the ProspectPro system by specifying the event's unique identifier. It is useful in scenarios where events are no longer relevant or were created by mistake and need to be removed permanently. For example, if an event tracking a specific user action was incorrectly logged, this node can be used to delete that event to maintain clean and accurate data.
Properties
| Name | Meaning |
|---|---|
| Event ID | The unique identifier of the event you want to delete. WARNING: This action cannot be undone. |
Output
The output JSON contains the response from the ProspectPro API after attempting to delete the specified event. Typically, this will confirm whether the deletion was successful or provide error details if it failed. The node does not output binary data.
Dependencies
- Requires an API key credential for authenticating with the ProspectPro API.
- The base URL for API requests is
https://api.prospectpro.nl/v1.2. - The node uses HTTP DELETE method on the
/eventsendpoint with the event ID passed as a query string parameter.
Troubleshooting
Common issues:
- Providing an invalid or non-existent Event ID will result in an error from the API.
- Lack of proper API authentication credentials will cause authorization failures.
- Network connectivity problems may prevent the request from completing.
Error messages:
- "Event not found" or similar indicates the Event ID does not exist; verify the ID before retrying.
- Authentication errors suggest missing or incorrect API credentials; ensure the API key is correctly configured.
- General HTTP errors (e.g., 400, 500) should be checked against the ProspectPro API documentation for further guidance.
Links and References
- ProspectPro API Documentation (for detailed API usage and error codes)