Moshe Bareket
Articles
-
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...
-
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: ...
-
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 ...
-
End point
The default and only end point for labs reports is a POST request to https://api.cedato.com/api/v2.0/reports/
-
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...
-
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...
-
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...
-
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...
-
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...
-
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...