Skip to main content

Get a specific template

get/v1/videos/user-templates/{id}

Get a specific template

Request

Parameters

NameInTypeDescription
id*pathstringNo description

Responses

200No description
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"name": {
"type": "string"
},
"slug": {
"type": [
"string",
"null"
]
},
"description": {
"type": [
"string",
"null"
]
},
"thumbnail": {
"type": [
"string",
"null"
]
},
"category": {
"type": [
"string",
"null"
]
},
"tags": {
"type": [
"array",
"null"
],
"items": {}
},
"composition_width": {
"type": "integer"
},
"composition_height": {
"type": "integer"
},
"is_public": {
"type": "boolean"
},
"usage_count": {
"type": "integer"
},
"created_at": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"clips": {
"type": "array",
"items": {}
},
"tracks": {
"type": "array",
"items": {}
}
},
"required": [
"id",
"name",
"slug",
"description",
"thumbnail",
"category",
"tags",
"composition_width",
"composition_height",
"is_public",
"usage_count",
"created_at",
"updated_at",
"clips",
"tracks"
]
}
},
"required": [
"success",
"data"
]
}