Skip to content

Presets Resource

Overview

The Presets endpoint allows you to manage video and audio encoding presets. You can create, update, delete, and retrieve presets.

Endpoints

  • GET /presets: List all presets or get a specific preset by ID
  • POST /presets: Create a new preset
  • PUT /presets/ID: Update an existing preset
  • DELETE /presets/ID: Delete a preset

Authentication

All endpoints require a Bearer token for authentication.

Supported Methods

  • GET: Retrieve information about presets
  • POST: Create a new preset
  • PUT: Update an existing preset
  • DELETE: Delete a preset

Headers

  • Authorization: Bearer [AUTH_TOKEN]
  • Content-Type: application/json (for POST and PUT requests)

Common Parameters

  • format: string (Optional)
    Values: json, xml
    Overrides the Request Accept header.
  • human: boolean (Optional)
    Values: true, false
    If 'true', the response will be in a structured, more human-readable form.
  • show_null: boolean (Optional)
    Values: true, false
    If set to "true", the response will contain also keys that are not set to a value.
  • expand_all: boolean (Optional)
    Values: true, false
    Recursively look up referenced objects and embed the respective JSON as nested objects directly into the response.

For detailed information about each method, please refer to the respective documentation files.