Skip to main content
POST
/
public
/
get-video-library
Get video from video library
curl --request POST \
  --url https://backend.codedamn.com/api/public/get-video-library \
  --header 'Content-Type: application/json' \
  --header 'FERMION-API-KEY: <api-key>' \
  --data '{
  "data": [
    {
      "data": {
        "filterTerm": "<string>",
        "pageNumber": 2,
        "folderPath": "<string>"
      }
    }
  ]
}'
[
  {
    "output": {
      "status": "ok",
      "data": {
        "totalResults": 1,
        "pageSize": 1,
        "videoData": [
          {
            "createdAt": "2023-11-07T05:31:56Z",
            "status": "CcFailed",
            "videoId": "<string>",
            "videoTitle": "<string>"
          }
        ],
        "absoluteFolderPaths": [
          "<string>"
        ]
      }
    }
  }
]

Authorizations

FERMION-API-KEY
string
header
required

Body

application/json

API Request Body

data
object[]
required

Response

200 - application/json

API Response Body

output
object
required
  • Option 1
  • Option 2
I