Request

Response

    extraction.finished

    Event:
    extraction.finished
    Service:
    derivative (Model Derivative)
    Scope:
    workflow
    Trigger:
    When a job is completed.

    Create a Webhook

    Request

    curl -X 'POST'\
         -v 'https://developer.api.autodesk.com/webhooks/v1/systems/derivative/events/extraction.finished/hooks'\
         -H 'Content-Type: application/json'\
         -H 'authorization: Bearer bNU4P0trbQKNSzxWksLPTzSbbmUz'\
         -d '{
                "callbackUrl": "http://bf067e05.ngrok.io/callback",
                "scope": {
                    "workflow": "my-workflow-id"
                }
            }'
    
    Show More

    Callback Payload

    Headers

    x-adsk-delivery-id
    string
    Payload delivery ID
    x-adsk-signature
    string
    Hash-signature of the payload using secret token as the key.
    It is prefixed with sha1hash=. Your callback endpoint can
    verify the signature to validate the integrity of the payload.

    Example Body

    {
      "version": "1.0",
      "resourceUrn": "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6d2htZHRlc3RzdGcvQ2FzZUlubmVyLmlwdA",
      "hook": {
        "hookId": "a228fb60-106b-11e8-9774-490cff0c6aae",
        "tenant": "my-workflow-id",
        "callbackUrl": "http://bf067e05.ngrok.io/callback",
        "createdBy": "7HqqekpIbAfWIKu9G1Yxx9SOCX9rtn6p",
        "event": "extraction.finished",
        "createdDate": "2018-02-13T03:11:50.294+0000",
        "system": "derivative",
        "creatorType": "Application",
        "status": "active",
        "scope": {
          "workflow": "my-workflow-id"
        },
        "urn": "urn:adsk.webhooks:events.hook:a228fb60-106b-11e8-9774-490cff0c6aae",
        "__self__": "/systems/derivative/events/extraction.finished/hooks/a228fb60-106b-11e8-9774-490cff0c6aae"
      },
      "payload": {
        "TimeStamp": 1513134729128,
        "URN": "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6d2htZHRlc3RzdGcvQ2FzZUlubmVyLmlwdA",
        "EventType": "EXTRACTION_FINISHED",
        "Payload": {
          "status": "success",
          "scope": "7dca556c-e041-444a-91cf-cdea18a7699e",
          "registerKey": []
        }
      }
    }
    
    Show More