Skip to Content

TwentyThree™ API

API Method: /api/photo/section/create

Create a section within a video.

Parameters

ParameterDescription
photo_id (required) The ID of the video with the section.
start_time The specific time in seconds where you want the section to begin. The timestamp must med 0 or higher -- and cannot exceed the length of the video.
title (required) The title of the section.
description (required) Description text for the section.

Permission level

The minimum required permission level is:

write

Example XML Response

<response status="ok" permission_level="write" 
  message="The section was created" cached="0"/>

Example JSON Response

{
  "status": "ok", 
  "message":"The section was created",
  "permission_level":"write",
  "cached":"0",
  "photo":{},
  "p": "1",
  "size": "1",
  "site": { ... },
  "endpoint": "/api/photo/section/create"
}