MediaMarkup
  • Welcome to MediaMarkup
  • User Guide
    • Overview
    • Creating An Approval
    • Adding Reviewers/Approvers
    • Notes & Comments
    • Video Markup
    • Approval Status
    • Making Decisions
    • The Magic Pen
    • Html Review
  • API
    • Introduction
    • Authentication
    • API Explorer
    • WebHooks
    • RedirectUrl
    • Client Libraries
    • Endpoints
  • Features
    • File Formats
  • FAQs
    • Your Questions
    • Release Notes
  • Support
    • How can we help?
    • Feedback / Your Ideas
  • Downloads
    • Case Studies
  • Beta Phase
    • Beta / Testing
  • Security
    • Overview
    • Vulnerability Disclosure Policy
    • Hall of Fame
Powered by GitBook
On this page

Was this helpful?

  1. API

WebHooks

WebHooks or callbacks to your own application are available for integration, WebHooks are posted to a specified url for various events within MediaMarkup.

The WebHook Url is configured within the account details and is available to all account administrators.

A webhook or callback will be posted to the specified url upon various events and post a JSON object, the properties of the JSON object will contain an eventType, id, created date and data properties. The data property structure will change for each event type. each event will have a unique id and created date (unix time stamp)

Example webhook data

Approval.Create = Approval Created

{ 
    "eventType": "Approval.Create", 
    "id":" 0faf1b6b04be4faea95af964466cb54b", 
    "created": 1527883431, 
    "data": 
        { 
            "approvalId": "38cfbf80b38d4a01a4f29027985d792d", 
            "name": "11111" 
        } 
}

PreviousAPI ExplorerNextRedirectUrl

Last updated 6 years ago

Was this helpful?