Skip to main content
PUT
/
tags
Update tags
curl --request PUT \
  --url https://api-staging.pixwel.com/api/tags \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "29.97",
  "type": "Framerate",
  "aliases": [
    "<unknown>"
  ],
  "ffprobeRules": {
    "r_frame_rate": "30000/1001"
  },
  "created": "<string>"
}
'
{
  "name": "29.97",
  "type": "Framerate",
  "aliases": [
    "<unknown>"
  ],
  "ffprobeRules": {
    "r_frame_rate": "30000/1001"
  },
  "created": "<string>"
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Body

application/json
name
string
Example:

"29.97"

type
string
Example:

"Framerate"

aliases
any[]
ffprobeRules
object
created
string | null

Response

200 - application/json

OK

name
string
Example:

"29.97"

type
string
Example:

"Framerate"

aliases
any[]
ffprobeRules
object
created
string | null