molroo docs
PersonaAPI ReferencePersonasIdSnapshot

Export persona snapshot

GET
/personas/{id}/snapshot

Path Parameters

id*string

Persona ID

Response Body

application/json

application/json

curl -X GET "https://api.molroo.io/personas/uuid/snapshot"
{
  "result": {
    "state": {
      "property1": null,
      "property2": null
    },
    "relationships": {
      "property1": null,
      "property2": null
    },
    "goals": [
      {
        "id": "string",
        "content": "string",
        "priority": 0,
        "mutable": true,
        "status": "active"
      }
    ],
    "selfConcept": "string",
    "mood": {
      "V": -1,
      "A": -1,
      "D": -1
    },
    "moodHistory": [
      {
        "emotion": {
          "V": -1,
          "A": -1,
          "D": -1
        },
        "intensity": 0
      }
    ],
    "somatic": {
      "property1": null,
      "property2": null
    },
    "narrative": {
      "property1": null,
      "property2": null
    },
    "tmt": {
      "property1": null,
      "property2": null
    },
    "selfEsteem": {
      "global": 0,
      "contingencies": {
        "property1": 0,
        "property2": 0
      }
    },
    "motivationContexts": {
      "property1": null,
      "property2": null
    },
    "maskIntegrity": 0,
    "maskState": "string",
    "property1": null,
    "property2": null
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}