Webhooks ========= We have configured events to trigger a POST request get sent to a URL that you specify. To configure a webhook for the following events, please contact us at solar@rightangleeng.com or at https://rightangleeng.com/contact-us and provide the URL that you would like to use for a given event. Job Approved ------------- The webhook will trigger when a job from your organization has been approved by our team and files are ready for download. The job ID will be included along with the job's status, indicating its approval, will be included in the request. .. code-block:: JSON { "job_id" : 1234 "status": "Approved" } Message Received ---------------- The webhook will trigger when a member of our team has sent a message in regards to a job that your organization has submitted. The Job ID and the attributes of the message (author, message body, date, attached media) will be included in the request. .. code-block:: JSON { "job_id" : 1234 "message": { "author": "John Doe" "body": "This is the body of the message" "date_created": //Date the message was sent "media": //URL to attached media } }