Legacy A2A gateway - task snapshot dispatch (GET)
curl --request GET \
--url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"contextId": "<string>",
"status": {
"state": "working",
"timestamp": "<string>",
"message": {}
},
"history": [
{}
],
"artifacts": [
{}
],
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"terminal": true
}{
"jsonrpc": "2.0",
"error": {
"code": -32000,
"message": "<string>"
},
"id": "<string>"
}A2A
Legacy A2A gateway - task snapshot dispatch (GET)
Backward-compatible legacy gateway. GET /v1/a2a?taskId=xxx
looks up the task’s _agent_id and forwards to the per-agent
endpoint GET /v1/agents/{agentId}/a2a?taskId=xxx. New clients
should call the per-agent path directly.
GET
/
v1
/
a2a
Legacy A2A gateway - task snapshot dispatch (GET)
curl --request GET \
--url https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://{host}/v2/workspaces/slug:agent-factory/webhooks/v1/a2a"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"contextId": "<string>",
"status": {
"state": "working",
"timestamp": "<string>",
"message": {}
},
"history": [
{}
],
"artifacts": [
{}
],
"metadata": {},
"createdAt": "2023-11-07T05:31:56Z",
"terminal": true
}{
"jsonrpc": "2.0",
"error": {
"code": -32000,
"message": "<string>"
},
"id": "<string>"
}Authorizations
BearerAuthOrgApiKeyAuth
User-bound credential carrying an identity: either a session JWT
or a user access token (at:*) generated from the user settings UI.
Send as Authorization: Bearer <token>.
Org API keys (iak_*) are not accepted here - they carry
no user identity. Use the x-prismeai-api-key header instead
(see OrgApiKeyAuth).
Query Parameters
Maximum string length:
128Response
Task snapshot (forwarded from the per-agent endpoint).
A2A task record.
True when state is completed, canceled, or failed.
Was this page helpful?