Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create, list, update, and delete post records.
const { data } = await vj.createPost({ accountId: "acc_...", caption: "The one thing nobody tells you about creatine", mediaUrl: "https://cdn.vidjutsu.ai/uploads/...", });
const { data } = await vj.listOrGetPosts(); // Filter by account const { data } = await vj.listOrGetPosts({ accountId: "acc_..." });
const { data } = await vj.listOrGetPosts({ id: "post_..." });
const { data } = await vj.updatePost( { caption: "Updated caption" }, { id: "post_..." }, );
const { data } = await vj.deletePost({ id: "post_..." });