Update asset metadata
curl --request PUT \
--url https://cloud.comfy.org/api/assets/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"tags": [
"<string>"
],
"mime_type": "<string>",
"preview_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_metadata": {}
}
'import requests
url = "https://cloud.comfy.org/api/assets/{id}"
payload = {
"name": "<string>",
"tags": ["<string>"],
"mime_type": "<string>",
"preview_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_metadata": {}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
tags: ['<string>'],
mime_type: '<string>',
preview_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
user_metadata: {}
})
};
fetch('https://cloud.comfy.org/api/assets/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.comfy.org/api/assets/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'tags' => [
'<string>'
],
'mime_type' => '<string>',
'preview_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'user_metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://cloud.comfy.org/api/assets/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://cloud.comfy.org/api/assets/{id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.comfy.org/api/assets/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"asset_hash": "<string>",
"tags": [
"<string>"
],
"mime_type": "<string>",
"user_metadata": {}
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}asset
Update asset metadata
Updates an asset’s metadata. At least one field must be provided. Only name, tags, and user_metadata can be updated.
PUT
/
api
/
assets
/
{id}
Update asset metadata
curl --request PUT \
--url https://cloud.comfy.org/api/assets/{id} \
--header 'Content-Type: application/json' \
--header 'X-API-Key: <api-key>' \
--data '
{
"name": "<string>",
"tags": [
"<string>"
],
"mime_type": "<string>",
"preview_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_metadata": {}
}
'import requests
url = "https://cloud.comfy.org/api/assets/{id}"
payload = {
"name": "<string>",
"tags": ["<string>"],
"mime_type": "<string>",
"preview_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"user_metadata": {}
}
headers = {
"X-API-Key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'X-API-Key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
name: '<string>',
tags: ['<string>'],
mime_type: '<string>',
preview_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
user_metadata: {}
})
};
fetch('https://cloud.comfy.org/api/assets/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://cloud.comfy.org/api/assets/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'name' => '<string>',
'tags' => [
'<string>'
],
'mime_type' => '<string>',
'preview_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'user_metadata' => [
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://cloud.comfy.org/api/assets/{id}"
payload := strings.NewReader("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("X-API-Key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://cloud.comfy.org/api/assets/{id}")
.header("X-API-Key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://cloud.comfy.org/api/assets/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["X-API-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"name\": \"<string>\",\n \"tags\": [\n \"<string>\"\n ],\n \"mime_type\": \"<string>\",\n \"preview_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"user_metadata\": {}\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"updated_at": "2023-11-07T05:31:56Z",
"name": "<string>",
"asset_hash": "<string>",
"tags": [
"<string>"
],
"mime_type": "<string>",
"user_metadata": {}
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}{
"code": "<string>",
"message": "<string>"
}授权
API key authentication. Generate an API key from your account settings at https://platform.comfy.org/profile/api-keys. Pass the key in the X-API-Key header.
路径参数
Asset ID
请求体
application/json
响应
Asset updated successfully
Asset ID
Timestamp of the update
Updated name of the asset
Blake3 hash of the asset content
Pattern:
^blake3:[a-f0-9]{64}$Updated tags for the asset
Updated MIME type of the asset
Updated custom metadata
⌘I