Skip to main content

Update subtitle content

PUT 

https://api.one.blendvision.com/bv/cms/v1/library/subtitles/:id

Update subtitle content

Request

Path Parameters

    id stringrequired

    The id of the subtitle.

Header Parameters

    x-bv-org-id stringrequired

    To invoke this API using api_token, you need to set the x-bv-org-id header to specify the organization for which you want to perform the action.

Body

required
    content object[]required

    The content of subtitle.

  • Array [
  • index int32
    start_at string
    end_at string
    words string[]
  • ]
  • display stringrequired

    The display name of subtitle.

Responses

A successful response.

Schema

    object

Authorization: authorization

name: authorizationtype: apiKeydescription: Enter the token with Bearer schema prefix, eg. `Bearer <token-string>`in: header
curl -L -X PUT 'https://api.one.blendvision.com/bv/cms/v1/library/subtitles/:id' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'authorization: <API_KEY_VALUE>' \
-d '{
"content": [
{
"index": 0,
"start_at": "string",
"end_at": "string",
"words": [
"string"
]
}
],
"display": "string"
}'
Request Collapse all
Base URL
https://api.one.blendvision.com
Auth
Parameters
— pathrequired
— headerrequired
Body required
{
"content": [
{
"index": 0,
"start_at": "string",
"end_at": "string",
"words": [
"string"
]
}
],
"display": "string"
}
ResponseClear

Click the Send API Request button above and see the response here!