CDN and DNS (v2.1)

Create Preset

Creates a new Preset object in the specified workspace with the provided configuration.

post/delivery/v2.1/global/workspaces/{workspaceUUID}/presets

Path parameters

workspaceUUIDstring required

UUID of the workspace

Request body

apiVersion'delivery/v2' | 'delivery/v2.1' required

Version identifier of the API schema

kind'Preset' required

The string value 'Preset' that identifies the schema

Example request

{
  "apiVersion": "delivery/v2",
  "kind": "Preset",
  "metadata": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "spec": {
    "audio": {
      "bitrate": "128k",
      "codec": "aac"
    },
    "container": "mp4",
    "speed": "medium",
    "video": {
      "bitrate": "1000k",
      "bufferSize": "2M",
      "codec": "h264",
      "maxBitrate": "2M",
      "minBitrate": "500k",
      "resizeType": "autoHeight"
    }
  }
}

Response

The preset was successfully created. The response contains the complete preset details including the assigned unique identifier.

apiVersion'delivery/v2' | 'delivery/v2.1' required

Version identifier of the API schema

kind'Preset' required

The string value 'Preset' that identifies the schema

Example response

{
  "apiVersion": "delivery/v2",
  "kind": "Preset",
  "metadata": {
    "uid": "00000000-0000-0000-0000-000000000000"
  },
  "spec": {
    "audio": {
      "bitrate": "128k",
      "codec": "aac"
    },
    "container": "mp4",
    "speed": "medium",
    "video": {
      "bitrate": "1000k",
      "bufferSize": "2M",
      "codec": "h264",
      "maxBitrate": "2M",
      "minBitrate": "500k",
      "resizeType": "autoHeight"
    }
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.