Skip to main content
POST
/
v1
/
agents
/
{agentId}
/
a2a
A2A JSON-RPC 2.0 dispatch (per-agent)
curl --request POST \
  --url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/agents/{agentId}/a2a \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "jsonrpc": "2.0",
  "method": "<string>"
}
'
{
  "jsonrpc": "2.0",
  "id": "<string>",
  "result": {},
  "error": {
    "code": 123,
    "message": "<string>",
    "data": {}
  }
}

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

agentId
string
required
Maximum string length: 64

Body

application/json

Per-agent A2A JSON-RPC 2.0 request.

jsonrpc
enum<string>
required
Available options:
2.0
method
string
required
Maximum string length: 64
params
object
id
string
Maximum string length: 128

Response

JSON-RPC 2.0 response. Carries result on success or error on failure.

A2A JSON-RPC 2.0 response.

jsonrpc
enum<string>
Available options:
2.0
id
string | null

Echoes the request id (string or null per JSON-RPC 2.0).

result
object
error
object