Update an asset
Partially updates an asset. Send only the fields you want to change. An empty body returns 400.
This is a partial update. Send only the fields you want to change and the full updated asset is returned.Documentation Index
Fetch the complete documentation index at: https://docs.versuno.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Versuno API key. Must be prefixed with Bearer. Format: Bearer uk_live_...
Path Parameters
Query Parameters
The asset type to update. Must match the asset's actual type.
prompt, persona, context, system_prompt, skill Body
New display name.
"Revised assistant prompt"
Deprecated compatibility field for body text. Use block update endpoints instead. Will be removed soon.
"You are an expert assistant that..."
Updated summary, or null to clear it.
"Updated for v2 workflows"
New emoji, or null to clear it.
"✨"
Move to a project, or null to unassign.
null
Reassign to a team, or null to unassign.
null
Adjust the last-used timestamp.
null
Replace structured block tree in ai_asset_blocks. Preferred over content.
[
{
"id": "b_11111111-1111-4111-8111-111111111111",
"type": "heading",
"meta": { "level": 2 },
"content": "Support Workflow"
},
{
"id": "b_22222222-2222-4222-8222-222222222222",
"type": "paragraph",
"meta": {},
"content": "Greet the user, ask clarifying questions, then propose next steps."
}
]Response
Full updated asset object.
An AI asset — a prompt, persona, context, system prompt, or skill.
Unique identifier for the asset.
"a1b2c3d4-e5f6-7890-abcd-ef1234567890"
Type of AI asset. Immutable after creation.
prompt, persona, context, system_prompt, skill "prompt"
Display name of the asset.
"Customer support assistant"
Short summary shown in the UI.
"Handles tier-1 support tickets"
The main content body of the asset.
"You are a friendly customer support agent. Help users resolve their issues quickly and professionally."
Structured block tree resolved from ai_asset_blocks.
[
{
"id": "b_11111111-1111-4111-8111-111111111111",
"type": "heading",
"meta": { "level": 2 },
"content": "Support Workflow"
},
{
"id": "b_22222222-2222-4222-8222-222222222222",
"type": "paragraph",
"meta": {},
"content": "Greet the user, ask clarifying questions, then propose next steps."
},
{
"id": "b_33333333-3333-4333-8333-333333333333",
"type": "todo_list",
"meta": {},
"content": null,
"children": [
{
"id": "b_44444444-4444-4444-8444-444444444444",
"type": "paragraph",
"meta": { "checked": false },
"content": "Confirm account email"
},
{
"id": "b_55555555-5555-4555-8555-555555555555",
"type": "paragraph",
"meta": { "checked": true },
"content": "Acknowledge issue details"
}
]
}
]Single emoji icon for the asset.
"🤖"
Whether the asset is publicly visible.
false
Latest version number of this asset (1 if no versions exist yet).
3
ID of the project this asset belongs to, or null if unassigned.
null
ID of the team workspace this asset belongs to, or null for personal.
null
ID of the user who owns this asset.
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
ISO 8601 timestamp when the asset was created.
"2026-01-15T10:30:00.000Z"
ISO 8601 timestamp of the last update.
"2026-01-20T14:45:00.000Z"
ISO 8601 timestamp when the asset was trashed, or null if active.
null

