molroo docs
PersonaAPI ReferencePersonas

Create a new standalone persona

POST
/personas

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://api.molroo.io/personas" \  -H "Content-Type: application/json" \  -d '{    "config": {      "property1": null,      "property2": null    }  }'
{
  "result": {
    "personaId": "string",
    "createdAt": 0
  }
}
{
  "error": {
    "code": "string",
    "message": "string"
  }
}