Skip to main content
DELETE
/
api
/
v2
/
public
/
application
/
event
/
:event_id
curl -X DELETE "https://app.refold.ai/api/v2/public/application/event/{event_id}" \
  -H "x-api-key: YOUR_API_KEY"
[
  {
    "_id": "69f89fa2b195883025cfcb65",
    "name": "candidate_created",
    "response": [
      { "key": "event", "type": "text" },
      { "key": "payload", "type": "object" }
    ]
  }
]
Remove a custom event (trigger) from your organization’s default custom application. The response is the updated list of remaining events.

Authentication

Events are defined at the org level, so this endpoint uses API-key auth.
x-api-key
string
required
Your Refold API key. Find it in Settings → Credentials.

Path Parameters

event_id
string
required
The event ID to delete.

Response

Returns the array of remaining events after deletion.
[
  {
    "_id": "69f89fa2b195883025cfcb65",
    "name": "candidate_created",
    "response": [
      { "key": "event", "type": "text" },
      { "key": "payload", "type": "object" }
    ]
  }
]
curl -X DELETE "https://app.refold.ai/api/v2/public/application/event/{event_id}" \
  -H "x-api-key: YOUR_API_KEY"