Skip to main content
GET
/
v1
/
shares
/
{shareId}
Get a share owned by the caller
curl --request GET \
  --url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/shares/{shareId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "type": "conversation",
  "context_id": "<string>",
  "message_id": "<string>",
  "agent_id": "<string>",
  "url": "<string>",
  "created_at": "2023-11-07T05:31:56Z",
  "snapshot": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.prisme.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

User session JWT or instance API key (iak_*). Send as Authorization: Bearer <token>.

Path Parameters

shareId
string
required
Maximum string length: 128

Response

Share record (owner view).

Share record (owner view).

id
string
type
enum<string>
Available options:
conversation,
message,
artifact
context_id
string
message_id
string
agent_id
string
url
string
created_at
string<date-time>
snapshot
object

The frozen snapshot - for conversation/message shares this includes messages, artifacts, agent_name, agent_icon_url. For artifact shares it carries content, artifact_type, mime_type, version, access_level.