Jsonify
  • About
  • API reference
    • Api
      • V2
        • Workflow
          • Latest.json
          • Node
            • Start
          • Results
            • First
        • Ad-hoc Extract
          • Start
          • Result
        • Document
          • Start
          • Result
        • Dataset
          • Start
          • Result
        • Result
          • Extract data
  • Specification
Powered by GitBook
On this page
  1. API reference
  2. Api
  3. V2
  4. Workflow

Results

PreviousStartNextFirst

Retrieve the list of results of a workflow run, by run ID

get

When an agent task runs, it creates a set of results. These results contain the findings from the agent, as well as metadata about the run.

Authorizations
Path parameters
run_idstringRequired

The GUID of the workflow run

Responses
200
A task result
application/json
get
GET /api/v2/results/{run_id} HTTP/1.1
Host: api.jsonify.com
Authorization: Bearer JWT
Accept: */*
200

A task result

{
  "message": "text",
  "result": {
    "changed": true,
    "credits": {
      "remaining": 1,
      "used": 1
    },
    "details": {
      "descr": "text"
    },
    "json": {
      "data": true
    },
    "screenshots": [
      "https://example.com"
    ],
    "when": 1,
    "done": true,
    "id": "text"
  },
  "success": true
}

Retrieve a single row from a workflow run, by run ID and row id

get

When an agent task runs, it creates a set of results. These results contain the findings from the agent, as well as metadata about the run. This endpoint returns a single row.

Authorizations
Path parameters
run_idstringRequired

The GUID of the workflow run

result_idstringRequired

The GUID of the workflow row

Responses
200
A task result
application/json
get
GET /api/v2/results/{run_id}/{result_id} HTTP/1.1
Host: api.jsonify.com
Authorization: Bearer JWT
Accept: */*
200

A task result

{
  "message": "text",
  "result": {
    "changed": true,
    "credits": {
      "remaining": 1,
      "used": 1
    },
    "details": {
      "descr": "text"
    },
    "json": {
      "data": true
    },
    "screenshots": [
      "https://example.com"
    ],
    "when": 1,
    "done": true,
    "id": "text"
  },
  "success": true
}
  • GETRetrieve the list of results of a workflow run, by run ID
  • GETRetrieve a single row from a workflow run, by run ID and row id