Debriefer

Get a specific version snapshot

Retrieves a historical version snapshot of a blueprint.

GET
/api/v1/blueprints/{id}/versions/{version}

Path Parameters

id*string
version*integer
Range0 < value

Response Body

application/json

curl -X GET "https://loading/api/v1/blueprints/bp_1234567890abcdef/versions/1"
{
  "object": "blueprint_version",
  "blueprint_id": "string",
  "version": 0,
  "graph": {
    "entry_node": "string",
    "nodes": {
      "property1": {
        "type": "question",
        "key": "string",
        "text": "string",
        "objective": "string",
        "required": true,
        "probing": {
          "enabled": true,
          "max_follow_ups": 0,
          "techniques": [
            "string"
          ],
          "completion_hint": "string"
        }
      },
      "property2": {
        "type": "question",
        "key": "string",
        "text": "string",
        "objective": "string",
        "required": true,
        "probing": {
          "enabled": true,
          "max_follow_ups": 0,
          "techniques": [
            "string"
          ],
          "completion_hint": "string"
        }
      }
    },
    "edges": [
      {
        "from": "string",
        "to": "string",
        "condition": {
          "type": "structured",
          "field": "string",
          "operator": "eq",
          "value": null
        },
        "priority": 0
      }
    ]
  },
  "settings": {
    "estimated_duration_m": 1,
    "max_duration_m": 1,
    "intro_message": "string",
    "outro_message": "string",
    "language": "string",
    "consent": true
  },
  "pipeline": {
    "transcript": true,
    "responses": true,
    "analysis": true
  },
  "published_at": "2019-08-24T14:15:22Z",
  "created_at": "2019-08-24T14:15:22Z"
}
Empty