cloudconvert / cloudconvert-php

CloudConvert PHP SDK
https://cloudconvert.com/api/v2
MIT License
222 stars 84 forks source link

Jobs: add webhook URL #89

Closed josiasmontag closed 3 years ago

josiasmontag commented 3 years ago

Allow setting a webhook URL for the current job:

$job = (new Job())
    ->setWebhookUrl('https://myendpoint')
    ->addTask(
         ...
    );

Replaces #88