Get a specific template
get/v1/videos/templates/{identifier}
Get a specific template
Request
Parameters
| Name | In | Type | Description |
|---|---|---|---|
| identifier* | path | string | No description |
Responses
200No description
- Schema
Schema Structure
{
"type": "object",
"properties": {
"success": {
"type": "boolean"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"name": {
"type": "string"
},
"slug": {
"type": "string"
},
"description": {
"type": [
"string",
"null"
]
},
"thumbnail": {
"type": [
"string",
"null"
]
},
"preview_video": {
"type": [
"string",
"null"
]
},
"structure": {
"type": "array",
"items": {}
},
"variables": {
"type": "array",
"items": {}
},
"default_settings": {
"type": "array",
"items": {}
},
"required_assets": {
"type": [
"array",
"null"
],
"items": {}
},
"supported_resolutions": {
"type": "array",
"items": {}
},
"min_duration": {
"type": [
"integer",
"null"
]
},
"max_duration": {
"type": [
"integer",
"null"
]
},
"category": {
"type": [
"string",
"null"
]
},
"tags": {
"type": [
"array",
"null"
],
"items": {}
},
"base_credits": {
"type": "string"
},
"is_premium": {
"type": "boolean"
},
"usage_count": {
"type": "integer"
}
},
"required": [
"id",
"name",
"slug",
"description",
"thumbnail",
"preview_video",
"structure",
"variables",
"default_settings",
"required_assets",
"supported_resolutions",
"min_duration",
"max_duration",
"category",
"tags",
"base_credits",
"is_premium",
"usage_count"
]
}
},
"required": [
"success",
"data"
]
}