Skip to main content
POST
/
decisions
Create a decision draft
curl --request POST \
  --url https://api.membria.com/v1/decisions \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "<string>",
  "context": "<string>",
  "prediction": "<string>",
  "confidence": 123,
  "assumptions": [
    "<string>"
  ],
  "alternatives": [
    "<string>"
  ],
  "status": "pending"
}
'
Send context, alternatives, prediction, and confidence to the DBB ledger. The response confirms that the draft is immutable and ready for Decision Surface signals.

Body

application/json
id
string
required
context
string
required
prediction
string
required
confidence
number<float>
required
assumptions
string[]
alternatives
string[]
status
enum<string>
Available options:
pending,
review,
closed

Response

201

Decision draft recorded