Debriefer

List version history

Lists all published version snapshots for a blueprint, newest first.

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

Path Parameters

id*string

Query Parameters

limit?integer
Default20
Range1 <= value <= 100
cursor?string

Response Body

application/json

curl -X GET "https://loading/api/v1/blueprints/bp_1234567890abcdef/versions"
{
  "object": "list",
  "data": [
    {
      "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"
    }
  ],
  "has_more": true,
  "next_cursor": "string"
}
Empty