Moshe Bareket

  • Total activity 362
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 276

Articles

Recent activity by Moshe Bareket
Sort by recent activity Recent activity Votes
  • Assign multiple Demand items to Supply

    PATCH /api/supplies//demands/multi/attach Assigning demands 12 and 34 to supply 456 Sample Request curl -X PATCH   https://api.cedato.com/api/supplies/456/demands/multi/attach   -H 'acc...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Pagination

    The pagination is controlled by supplying an offset and the number of items in a page. The report responses help you use the navigation by returning the next and previous links. Parameters: ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Unassign multiple Demand items from Supply

    PATCH /api/supplies//demands/multi/detach Unassigning demands 12 and 34 from supply 456 Sample Request curl -X PATCH   https://api.cedato.com/api/supplies/456/demands/multi/detach   -H ...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • End point

    The default and only end point for labs reports is a POST request to  https://api.cedato.com/api/v2.0/reports/

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • API and UI mapping

    The following table shows the mapping between the Reports in the Dashboard and the API. Reports that are marked as 'N/A' in the column Dashboard are available only through the API access and are no...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Get All Lists

    GET /api/lists/ Sample Request curl -X GET   https://api.cedato.com/api/lists   -H 'accept: application/json'   -H 'api-version: 1'   -H 'authorization: Bearer ' Sample R...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • About the Player API

    The API provides an external interface to the Cedato Player. The API functions can be used to extend the Player functionality, making it suitable for use in various contexts, implementing customize...

    • Edited
    • 1 follower
    • 0 comments
    • 0 votes
  • Sample Code - Player API

    Below is a sample code that demonstrates a player with an “Expand” button. Clicking on the button will result in a player resize. Please note that you have to change the player IDs (below “11111111...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • Events

    The following events are available in the API: player.ready Fires when the Player is ready to play video. Event data properties: rootDiv - (HTMLDivElement), player container playerId subId Sampl...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes
  • Player Control

    play When autoplay is false or the Player is in paused mode, continues/starts Player activity. Sample usage: apiInterface.play(); pause Pauses the Player activity, content video or ads, and sends t...

    • Created
    • 1 follower
    • 0 comments
    • 0 votes