Trigger response

This page will help you understand the trigger response

There are four event types supported by E.
Whenever one of these events occurs, it will trigger the URL configured during endpoint creation.

project.created (alpha)

After a project is successfully created, if the project.created event is subscribed, the following response will be sent as the POST request body to the configured URL.

{"eventType": "project.created", "eventTime": 1750066686, "crn":"XXX-YYY-ZZZ", "accountId": "APIDEMOIND"}

project.updated (alpha)

After a project is updated and if project.updatedevent is subscribed, the following response will be sent as the POST request body to the configured URL.

{"eventType": "project.updated", "eventTime": 1750066686, "crn":"XXX-YYY-ZZZ", "accountId": "APIDEMOIND"}

project.deleted (alpha)

Once a project is deleted, if the project.deleted event is subscribed, the following response will be sent as the POST request body to the configured URL.

{"eventType": "project.deleted", "eventTime": 1750066686, "crn":"XXX-YYY-ZZZ", "accountId": "APIDEMOIND"}

design.created (beta)

Once the design is created, if the design.created event is subscribed, the following response will be sent as the POST request body to the configured URL.

{"eventType": "design.created", "eventTime": 1750066686, "crn":"XXX-YYY-ZZZ", "accountId": "APIDEMOIND", "quote_id":"APIDEMOIND00002", "revision_number": "1"}