Possible to change video status via API?

@tylermyeo you’re close.

Your payload would be:

{
  "data": {
    "asset_ids": ["your-asset-id"],
    "values": [
      {
        "field_definition_id": "your-status-field-id",
        "value": ["status-uuid"]
      }
    ]
  }
}

I just tested this myself and confirmed this works. Here was my example cURL command if you want to reference

curl -X PATCH "https://api.frame.io/v4/accounts/ACCOUNT_ID/projects/PROJECT_ID/metadata/values" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \
  -H "Content-Type: application/json" \
  -H "api-version: experimental" \
  -d '{
    "data": {
      "asset_ids": [
        "YOUR_ASSET_ID"
      ],
      "values": [
        {
          "field_definition_id": "FIELD_DEFINITION_ID",
          "value": ["STATUS_UUID"]
        }
      ]
    }
  }'