Sorry, no results found for "".
RFC 4122 UUID of upload filter expressed in URL-safe base64 format
"-Lo34LFSTLmgPToamzJLcg"
The name of the filter
"Draft posts"
The actual filter
{ status: { eq: "draft" } }
Whether it's a shared filter or not
Returns a resource object of type upload_filter
import { buildClient } from "@datocms/cma-client-node";
async function run() { const client = buildClient({ apiToken: process.env.DATOCMS_API_TOKEN });
const uploadFilter = await client.uploadFilters.create({ name: "Draft posts", filter: { status: { eq: "draft" } }, shared: true, });
// Check the 'Returned output' tab for the result ☝️ console.log(uploadFilter);}
run();
{ id: "-Lo34LFSTLmgPToamzJLcg", name: "Draft posts", filter: { status: { eq: "draft" } }, shared: true,}