POST /data/project-templates

Create a new empty project template. Admin only.

application/json

Body Required

  • name string Required
  • description string
  • fps string
  • ratio string
  • resolution string
  • production_type string
  • production_style string

Responses

  • 201

    Project template created successfully

  • 400

    Invalid data or duplicate name

POST /data/project-templates
curl \
 --request POST 'http://api.example.com/data/project-templates' \
 --header "Authorization: $API_KEY" \
 --header "Content-Type: application/json" \
 --data '{"name":"string","description":"string","fps":"string","ratio":"string","resolution":"string","production_type":"string","production_style":"string"}'
Request examples
{
  "name": "string",
  "description": "string",
  "fps": "string",
  "ratio": "string",
  "resolution": "string",
  "production_type": "string",
  "production_style": "string"
}