Skip to end of banner
Go to start of banner

Clipping V4 API

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

« Previous Version 2 Next »

Introduction

This section describes BSS communication with /wiki/spaces/MAPI/pages/49677460

Authentication and authorisation 

All BSS endpoints support API key authorization. The header named 'Authorization' with content "Apikey PUT_YOUR_KEY_HERE" must be passed with request.

Endpoints overview

Endpoint

HTTP method

Purpose

/api/clipping/v4/clipsPOSTCreate a new clip
/api/clipping/v4/clips/{clip_id}GETGet clip by id
/api/clipping/v4/clips/{clip_id}PATCHUpdate clip by id
/api/clipping/v4/clips/{clip_id}DELETEDelete clip by id

Entities 

Clipping Resource

Up-to-date resource schema could be found on API documentation page /wiki/spaces/MAPI/pages/49677460 under schemas section.

ClippingResource example
{
  "data": {
    "id": "123abc",
    "type": "Clip",
    "attributes": {
      "channel_id": "123abc",
      "start_time": 1523268698,
      "end_time": 1523268698,
      "provider_showing_id": "abc123"
    }
  }
}

Attributes

  • channel_id:
  • start_time: 
  • end_time:
  • provider_showing_id: 

Use cases 

Clipping API to fetch, create, update and delete Clip

/wiki/spaces/MAPI/pages/49677460

Postman collection


  • No labels