Version 8.3.8

Back | 

WsVodProject

URL

http://de.piksel.tech/ws/ws_vod_project/mode/json/apiv/5.0?method=copy&
Use "request" param as post variable for submitting json/xml request payload for all COPY requests.

Parameters

  • title => Title of project
  • description => Description of project
  • tag => Keyword tags for project
  • referenceId => Unique reference id for project
  • copyProject => Contains uuid and optional settings: include_categories, include_chapters, include_programs, include_slides

Request

Copy an existing Vod Project

Request format

{
  "request": {
    "authentication": {
      "app_token": "7cd207c2-6808-11e3-b865-22000a8a28ea",
      "client_token": "d4c1b92c0acb102ba3e10015c5f061d1",
      "user_token": "f277cb9d46e45f67f44de949cdde110f"
    },
    "header": {
      "header_version": 1,
      "api_version": "5",
      "no_cache": true
    },
    "ws_vod_project": {
      "title": "Project Title",
      "description": "Project Description",
      "tag": "project,vod,player",
      "referenceId": "abc123",
      "copyProject": {
        "uuid": "zyx987",
        "include_programs": "true"
      }
    }
  }
}

Test Example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
  "request": {
    "authentication": {
      "app_token": "#app_token#",
      "client_token": "#client_token#",
      "user_token": "#user_token#"
    },
    "header": {
      "header_version": 1,
      "api_version": "5",
      "no_cache": true
    },
    "ws_vod_project": {
      "title": "Project Title",
      "description": "Project Description",
      "tag": "project,vod,player",
      "referenceId": "abc123",
      "copyProject": {
        "uuid": "zyx987",
        "include_programs": "true"
      }
    }
  }
}
X

Response

Response format

{
  "response": {
    "success": {
      "code": 533,
      "message": "Vod Project Copied",
      "details": ""
    }
  }
}