Skip to content
This repository was archived by the owner on Mar 5, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/Autodesk.Forge/Api/DerivativeWebhooksApi.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Forge SDK
*
* The Forge Platform contains an expanding collection of web service components that can be used with Autodesk cloud-based products or your own technologies. Take advantage of Autodesks expertise in design and engineering.
* The Forge Platform contains an expanding collection of web service components that can be used with Autodesk cloud-based products or your own technologies. Take advantage of Autodesks expertise in design and engineering.
*

* Contact: [email protected]
Expand Down Expand Up @@ -464,6 +464,8 @@ private string EventEnumToString (DerivativeWebhookEvent webhookEvent) {
switch ( webhookEvent ) {
case DerivativeWebhookEvent.ExtractionFinished:
return "extraction.finished";
case DerivativeWebhookEvent.ExtractionUpdated:
return "extraction.updated";
default:
throw new ApiException (400, "Webhook event type {webhookEvent} is not implemented.");
}
Expand Down Expand Up @@ -491,4 +493,4 @@ private dynamic CreateWebhookPostObject (string callbackUrl, string workflow, dy

}

}
}